sl@0
|
1 |
/* crypto/asn1/t_x509.c */
|
sl@0
|
2 |
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This package is an SSL implementation written
|
sl@0
|
6 |
* by Eric Young (eay@cryptsoft.com).
|
sl@0
|
7 |
* The implementation was written so as to conform with Netscapes SSL.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is free for commercial and non-commercial use as long as
|
sl@0
|
10 |
* the following conditions are aheared to. The following conditions
|
sl@0
|
11 |
* apply to all code found in this distribution, be it the RC4, RSA,
|
sl@0
|
12 |
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
sl@0
|
13 |
* included with this distribution is covered by the same copyright terms
|
sl@0
|
14 |
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* Copyright remains Eric Young's, and as such any Copyright notices in
|
sl@0
|
17 |
* the code are not to be removed.
|
sl@0
|
18 |
* If this package is used in a product, Eric Young should be given attribution
|
sl@0
|
19 |
* as the author of the parts of the library used.
|
sl@0
|
20 |
* This can be in the form of a textual message at program startup or
|
sl@0
|
21 |
* in documentation (online or textual) provided with the package.
|
sl@0
|
22 |
*
|
sl@0
|
23 |
* Redistribution and use in source and binary forms, with or without
|
sl@0
|
24 |
* modification, are permitted provided that the following conditions
|
sl@0
|
25 |
* are met:
|
sl@0
|
26 |
* 1. Redistributions of source code must retain the copyright
|
sl@0
|
27 |
* notice, this list of conditions and the following disclaimer.
|
sl@0
|
28 |
* 2. Redistributions in binary form must reproduce the above copyright
|
sl@0
|
29 |
* notice, this list of conditions and the following disclaimer in the
|
sl@0
|
30 |
* documentation and/or other materials provided with the distribution.
|
sl@0
|
31 |
* 3. All advertising materials mentioning features or use of this software
|
sl@0
|
32 |
* must display the following acknowledgement:
|
sl@0
|
33 |
* "This product includes cryptographic software written by
|
sl@0
|
34 |
* Eric Young (eay@cryptsoft.com)"
|
sl@0
|
35 |
* The word 'cryptographic' can be left out if the rouines from the library
|
sl@0
|
36 |
* being used are not cryptographic related :-).
|
sl@0
|
37 |
* 4. If you include any Windows specific code (or a derivative thereof) from
|
sl@0
|
38 |
* the apps directory (application code) you must include an acknowledgement:
|
sl@0
|
39 |
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
sl@0
|
42 |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
sl@0
|
43 |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
sl@0
|
44 |
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
sl@0
|
45 |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
sl@0
|
46 |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
sl@0
|
47 |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
sl@0
|
48 |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
sl@0
|
49 |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
sl@0
|
50 |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
sl@0
|
51 |
* SUCH DAMAGE.
|
sl@0
|
52 |
*
|
sl@0
|
53 |
* The licence and distribution terms for any publically available version or
|
sl@0
|
54 |
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
sl@0
|
55 |
* copied and put under another distribution licence
|
sl@0
|
56 |
* [including the GNU Public Licence.]
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
/*
|
sl@0
|
59 |
© Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
|
sl@0
|
62 |
#include <stdio.h>
|
sl@0
|
63 |
#include "cryptlib.h"
|
sl@0
|
64 |
#include <openssl/buffer.h>
|
sl@0
|
65 |
#include <openssl/bn.h>
|
sl@0
|
66 |
#ifndef OPENSSL_NO_RSA
|
sl@0
|
67 |
#include <openssl/rsa.h>
|
sl@0
|
68 |
#endif
|
sl@0
|
69 |
#ifndef OPENSSL_NO_DSA
|
sl@0
|
70 |
#include <openssl/dsa.h>
|
sl@0
|
71 |
#endif
|
sl@0
|
72 |
#ifndef OPENSSL_NO_EC
|
sl@0
|
73 |
#include <openssl/ec.h>
|
sl@0
|
74 |
#endif
|
sl@0
|
75 |
#include <openssl/objects.h>
|
sl@0
|
76 |
#include <openssl/x509.h>
|
sl@0
|
77 |
#include <openssl/x509v3.h>
|
sl@0
|
78 |
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
|
sl@0
|
79 |
#include "libcrypto_wsd_macros.h"
|
sl@0
|
80 |
#include "libcrypto_wsd.h"
|
sl@0
|
81 |
#endif
|
sl@0
|
82 |
|
sl@0
|
83 |
|
sl@0
|
84 |
|
sl@0
|
85 |
#ifndef OPENSSL_NO_FP_API
|
sl@0
|
86 |
EXPORT_C int X509_print_fp(FILE *fp, X509 *x)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return X509_print_ex_fp(fp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
EXPORT_C int X509_print_ex_fp(FILE *fp, X509 *x, unsigned long nmflag, unsigned long cflag)
|
sl@0
|
92 |
{
|
sl@0
|
93 |
BIO *b;
|
sl@0
|
94 |
int ret;
|
sl@0
|
95 |
|
sl@0
|
96 |
if ((b=BIO_new(BIO_s_file())) == NULL)
|
sl@0
|
97 |
{
|
sl@0
|
98 |
X509err(X509_F_X509_PRINT_EX_FP,ERR_R_BUF_LIB);
|
sl@0
|
99 |
return(0);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
BIO_set_fp(b,fp,BIO_NOCLOSE);
|
sl@0
|
102 |
ret=X509_print_ex(b, x, nmflag, cflag);
|
sl@0
|
103 |
BIO_free(b);
|
sl@0
|
104 |
return(ret);
|
sl@0
|
105 |
}
|
sl@0
|
106 |
#endif
|
sl@0
|
107 |
|
sl@0
|
108 |
EXPORT_C int X509_print(BIO *bp, X509 *x)
|
sl@0
|
109 |
{
|
sl@0
|
110 |
return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
EXPORT_C int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags, unsigned long cflag)
|
sl@0
|
114 |
{
|
sl@0
|
115 |
long l;
|
sl@0
|
116 |
int ret=0,i;
|
sl@0
|
117 |
char *m=NULL,mlch = ' ';
|
sl@0
|
118 |
int nmindent = 0;
|
sl@0
|
119 |
X509_CINF *ci;
|
sl@0
|
120 |
ASN1_INTEGER *bs;
|
sl@0
|
121 |
EVP_PKEY *pkey=NULL;
|
sl@0
|
122 |
const char *neg;
|
sl@0
|
123 |
ASN1_STRING *str=NULL;
|
sl@0
|
124 |
|
sl@0
|
125 |
if((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
|
sl@0
|
126 |
mlch = '\n';
|
sl@0
|
127 |
nmindent = 12;
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
if(nmflags == X509_FLAG_COMPAT)
|
sl@0
|
131 |
nmindent = 16;
|
sl@0
|
132 |
|
sl@0
|
133 |
ci=x->cert_info;
|
sl@0
|
134 |
if(!(cflag & X509_FLAG_NO_HEADER))
|
sl@0
|
135 |
{
|
sl@0
|
136 |
if (BIO_write(bp,"Certificate:\n",13) <= 0) goto err;
|
sl@0
|
137 |
if (BIO_write(bp," Data:\n",10) <= 0) goto err;
|
sl@0
|
138 |
}
|
sl@0
|
139 |
if(!(cflag & X509_FLAG_NO_VERSION))
|
sl@0
|
140 |
{
|
sl@0
|
141 |
l=X509_get_version(x);
|
sl@0
|
142 |
if (BIO_printf(bp,"%8sVersion: %lu (0x%lx)\n","",l+1,l) <= 0) goto err;
|
sl@0
|
143 |
}
|
sl@0
|
144 |
if(!(cflag & X509_FLAG_NO_SERIAL))
|
sl@0
|
145 |
{
|
sl@0
|
146 |
|
sl@0
|
147 |
if (BIO_write(bp," Serial Number:",22) <= 0) goto err;
|
sl@0
|
148 |
|
sl@0
|
149 |
bs=X509_get_serialNumber(x);
|
sl@0
|
150 |
if (bs->length <= 4)
|
sl@0
|
151 |
{
|
sl@0
|
152 |
l=ASN1_INTEGER_get(bs);
|
sl@0
|
153 |
if (l < 0)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
l= -l;
|
sl@0
|
156 |
neg="-";
|
sl@0
|
157 |
}
|
sl@0
|
158 |
else
|
sl@0
|
159 |
neg="";
|
sl@0
|
160 |
if (BIO_printf(bp," %s%lu (%s0x%lx)\n",neg,l,neg,l) <= 0)
|
sl@0
|
161 |
goto err;
|
sl@0
|
162 |
}
|
sl@0
|
163 |
else
|
sl@0
|
164 |
{
|
sl@0
|
165 |
neg=(bs->type == V_ASN1_NEG_INTEGER)?" (Negative)":"";
|
sl@0
|
166 |
if (BIO_printf(bp,"\n%12s%s","",neg) <= 0) goto err;
|
sl@0
|
167 |
|
sl@0
|
168 |
for (i=0; i<bs->length; i++)
|
sl@0
|
169 |
{
|
sl@0
|
170 |
if (BIO_printf(bp,"%02x%c",bs->data[i],
|
sl@0
|
171 |
((i+1 == bs->length)?'\n':':')) <= 0)
|
sl@0
|
172 |
goto err;
|
sl@0
|
173 |
}
|
sl@0
|
174 |
}
|
sl@0
|
175 |
|
sl@0
|
176 |
}
|
sl@0
|
177 |
|
sl@0
|
178 |
if(!(cflag & X509_FLAG_NO_SIGNAME))
|
sl@0
|
179 |
{
|
sl@0
|
180 |
if (BIO_printf(bp,"%8sSignature Algorithm: ","") <= 0)
|
sl@0
|
181 |
goto err;
|
sl@0
|
182 |
if (i2a_ASN1_OBJECT(bp, ci->signature->algorithm) <= 0)
|
sl@0
|
183 |
goto err;
|
sl@0
|
184 |
if (BIO_puts(bp, "\n") <= 0)
|
sl@0
|
185 |
goto err;
|
sl@0
|
186 |
}
|
sl@0
|
187 |
|
sl@0
|
188 |
if(!(cflag & X509_FLAG_NO_ISSUER))
|
sl@0
|
189 |
{
|
sl@0
|
190 |
if (BIO_printf(bp," Issuer:%c",mlch) <= 0) goto err;
|
sl@0
|
191 |
if (X509_NAME_print_ex(bp,X509_get_issuer_name(x),nmindent, nmflags) < 0) goto err;
|
sl@0
|
192 |
if (BIO_write(bp,"\n",1) <= 0) goto err;
|
sl@0
|
193 |
}
|
sl@0
|
194 |
if(!(cflag & X509_FLAG_NO_VALIDITY))
|
sl@0
|
195 |
{
|
sl@0
|
196 |
if (BIO_write(bp," Validity\n",17) <= 0) goto err;
|
sl@0
|
197 |
if (BIO_write(bp," Not Before: ",24) <= 0) goto err;
|
sl@0
|
198 |
if (!ASN1_TIME_print(bp,X509_get_notBefore(x))) goto err;
|
sl@0
|
199 |
if (BIO_write(bp,"\n Not After : ",25) <= 0) goto err;
|
sl@0
|
200 |
if (!ASN1_TIME_print(bp,X509_get_notAfter(x))) goto err;
|
sl@0
|
201 |
if (BIO_write(bp,"\n",1) <= 0) goto err;
|
sl@0
|
202 |
}
|
sl@0
|
203 |
if(!(cflag & X509_FLAG_NO_SUBJECT))
|
sl@0
|
204 |
{
|
sl@0
|
205 |
if (BIO_printf(bp," Subject:%c",mlch) <= 0) goto err;
|
sl@0
|
206 |
if (X509_NAME_print_ex(bp,X509_get_subject_name(x),nmindent, nmflags) < 0) goto err;
|
sl@0
|
207 |
if (BIO_write(bp,"\n",1) <= 0) goto err;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
if(!(cflag & X509_FLAG_NO_PUBKEY))
|
sl@0
|
210 |
{
|
sl@0
|
211 |
if (BIO_write(bp," Subject Public Key Info:\n",33) <= 0)
|
sl@0
|
212 |
goto err;
|
sl@0
|
213 |
if (BIO_printf(bp,"%12sPublic Key Algorithm: ","") <= 0)
|
sl@0
|
214 |
goto err;
|
sl@0
|
215 |
if (i2a_ASN1_OBJECT(bp, ci->key->algor->algorithm) <= 0)
|
sl@0
|
216 |
goto err;
|
sl@0
|
217 |
if (BIO_puts(bp, "\n") <= 0)
|
sl@0
|
218 |
goto err;
|
sl@0
|
219 |
|
sl@0
|
220 |
pkey=X509_get_pubkey(x);
|
sl@0
|
221 |
if (pkey == NULL)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
BIO_printf(bp,"%12sUnable to load Public Key\n","");
|
sl@0
|
224 |
ERR_print_errors(bp);
|
sl@0
|
225 |
}
|
sl@0
|
226 |
else
|
sl@0
|
227 |
#ifndef OPENSSL_NO_RSA
|
sl@0
|
228 |
if (pkey->type == EVP_PKEY_RSA)
|
sl@0
|
229 |
{
|
sl@0
|
230 |
BIO_printf(bp,"%12sRSA Public Key: (%d bit)\n","",
|
sl@0
|
231 |
BN_num_bits(pkey->pkey.rsa->n));
|
sl@0
|
232 |
RSA_print(bp,pkey->pkey.rsa,16);
|
sl@0
|
233 |
}
|
sl@0
|
234 |
else
|
sl@0
|
235 |
#endif
|
sl@0
|
236 |
#ifndef OPENSSL_NO_DSA
|
sl@0
|
237 |
if (pkey->type == EVP_PKEY_DSA)
|
sl@0
|
238 |
{
|
sl@0
|
239 |
BIO_printf(bp,"%12sDSA Public Key:\n","");
|
sl@0
|
240 |
DSA_print(bp,pkey->pkey.dsa,16);
|
sl@0
|
241 |
}
|
sl@0
|
242 |
else
|
sl@0
|
243 |
#endif
|
sl@0
|
244 |
#ifndef OPENSSL_NO_EC
|
sl@0
|
245 |
if (pkey->type == EVP_PKEY_EC)
|
sl@0
|
246 |
{
|
sl@0
|
247 |
BIO_printf(bp, "%12sEC Public Key:\n","");
|
sl@0
|
248 |
EC_KEY_print(bp, pkey->pkey.ec, 16);
|
sl@0
|
249 |
}
|
sl@0
|
250 |
else
|
sl@0
|
251 |
#endif
|
sl@0
|
252 |
BIO_printf(bp,"%12sUnknown Public Key:\n","");
|
sl@0
|
253 |
|
sl@0
|
254 |
EVP_PKEY_free(pkey);
|
sl@0
|
255 |
}
|
sl@0
|
256 |
|
sl@0
|
257 |
if (!(cflag & X509_FLAG_NO_EXTENSIONS))
|
sl@0
|
258 |
X509V3_extensions_print(bp, "X509v3 extensions",
|
sl@0
|
259 |
ci->extensions, cflag, 8);
|
sl@0
|
260 |
|
sl@0
|
261 |
if(!(cflag & X509_FLAG_NO_SIGDUMP))
|
sl@0
|
262 |
{
|
sl@0
|
263 |
if(X509_signature_print(bp, x->sig_alg, x->signature) <= 0) goto err;
|
sl@0
|
264 |
}
|
sl@0
|
265 |
if(!(cflag & X509_FLAG_NO_AUX))
|
sl@0
|
266 |
{
|
sl@0
|
267 |
if (!X509_CERT_AUX_print(bp, x->aux, 0)) goto err;
|
sl@0
|
268 |
}
|
sl@0
|
269 |
ret=1;
|
sl@0
|
270 |
err:
|
sl@0
|
271 |
if (str != NULL) ASN1_STRING_free(str);
|
sl@0
|
272 |
if (m != NULL) OPENSSL_free(m);
|
sl@0
|
273 |
return(ret);
|
sl@0
|
274 |
}
|
sl@0
|
275 |
|
sl@0
|
276 |
EXPORT_C int X509_ocspid_print (BIO *bp, X509 *x)
|
sl@0
|
277 |
{
|
sl@0
|
278 |
unsigned char *der=NULL ;
|
sl@0
|
279 |
unsigned char *dertmp;
|
sl@0
|
280 |
int derlen;
|
sl@0
|
281 |
int i;
|
sl@0
|
282 |
unsigned char SHA1md[SHA_DIGEST_LENGTH];
|
sl@0
|
283 |
|
sl@0
|
284 |
/* display the hash of the subject as it would appear
|
sl@0
|
285 |
in OCSP requests */
|
sl@0
|
286 |
if (BIO_printf(bp," Subject OCSP hash: ") <= 0)
|
sl@0
|
287 |
goto err;
|
sl@0
|
288 |
derlen = i2d_X509_NAME(x->cert_info->subject, NULL);
|
sl@0
|
289 |
if ((der = dertmp = (unsigned char *)OPENSSL_malloc (derlen)) == NULL)
|
sl@0
|
290 |
goto err;
|
sl@0
|
291 |
i2d_X509_NAME(x->cert_info->subject, &dertmp);
|
sl@0
|
292 |
|
sl@0
|
293 |
EVP_Digest(der, derlen, SHA1md, NULL, EVP_sha1(), NULL);
|
sl@0
|
294 |
for (i=0; i < SHA_DIGEST_LENGTH; i++)
|
sl@0
|
295 |
{
|
sl@0
|
296 |
if (BIO_printf(bp,"%02X",SHA1md[i]) <= 0) goto err;
|
sl@0
|
297 |
}
|
sl@0
|
298 |
OPENSSL_free (der);
|
sl@0
|
299 |
der=NULL;
|
sl@0
|
300 |
|
sl@0
|
301 |
/* display the hash of the public key as it would appear
|
sl@0
|
302 |
in OCSP requests */
|
sl@0
|
303 |
if (BIO_printf(bp,"\n Public key OCSP hash: ") <= 0)
|
sl@0
|
304 |
goto err;
|
sl@0
|
305 |
|
sl@0
|
306 |
EVP_Digest(x->cert_info->key->public_key->data,
|
sl@0
|
307 |
x->cert_info->key->public_key->length, SHA1md, NULL, EVP_sha1(), NULL);
|
sl@0
|
308 |
for (i=0; i < SHA_DIGEST_LENGTH; i++)
|
sl@0
|
309 |
{
|
sl@0
|
310 |
if (BIO_printf(bp,"%02X",SHA1md[i]) <= 0)
|
sl@0
|
311 |
goto err;
|
sl@0
|
312 |
}
|
sl@0
|
313 |
BIO_printf(bp,"\n");
|
sl@0
|
314 |
|
sl@0
|
315 |
return (1);
|
sl@0
|
316 |
err:
|
sl@0
|
317 |
if (der != NULL) OPENSSL_free(der);
|
sl@0
|
318 |
return(0);
|
sl@0
|
319 |
}
|
sl@0
|
320 |
|
sl@0
|
321 |
EXPORT_C int X509_signature_print(BIO *bp, X509_ALGOR *sigalg, ASN1_STRING *sig)
|
sl@0
|
322 |
{
|
sl@0
|
323 |
unsigned char *s;
|
sl@0
|
324 |
int i, n;
|
sl@0
|
325 |
if (BIO_puts(bp," Signature Algorithm: ") <= 0) return 0;
|
sl@0
|
326 |
if (i2a_ASN1_OBJECT(bp, sigalg->algorithm) <= 0) return 0;
|
sl@0
|
327 |
|
sl@0
|
328 |
n=sig->length;
|
sl@0
|
329 |
s=sig->data;
|
sl@0
|
330 |
for (i=0; i<n; i++)
|
sl@0
|
331 |
{
|
sl@0
|
332 |
if ((i%18) == 0)
|
sl@0
|
333 |
if (BIO_write(bp,"\n ",9) <= 0) return 0;
|
sl@0
|
334 |
if (BIO_printf(bp,"%02x%s",s[i],
|
sl@0
|
335 |
((i+1) == n)?"":":") <= 0) return 0;
|
sl@0
|
336 |
}
|
sl@0
|
337 |
if (BIO_write(bp,"\n",1) != 1) return 0;
|
sl@0
|
338 |
return 1;
|
sl@0
|
339 |
}
|
sl@0
|
340 |
|
sl@0
|
341 |
EXPORT_C int ASN1_STRING_print(BIO *bp, ASN1_STRING *v)
|
sl@0
|
342 |
{
|
sl@0
|
343 |
int i,n;
|
sl@0
|
344 |
char buf[80],*p;;
|
sl@0
|
345 |
|
sl@0
|
346 |
if (v == NULL) return(0);
|
sl@0
|
347 |
n=0;
|
sl@0
|
348 |
p=(char *)v->data;
|
sl@0
|
349 |
for (i=0; i<v->length; i++)
|
sl@0
|
350 |
{
|
sl@0
|
351 |
if ((p[i] > '~') || ((p[i] < ' ') &&
|
sl@0
|
352 |
(p[i] != '\n') && (p[i] != '\r')))
|
sl@0
|
353 |
buf[n]='.';
|
sl@0
|
354 |
else
|
sl@0
|
355 |
buf[n]=p[i];
|
sl@0
|
356 |
n++;
|
sl@0
|
357 |
if (n >= 80)
|
sl@0
|
358 |
{
|
sl@0
|
359 |
if (BIO_write(bp,buf,n) <= 0)
|
sl@0
|
360 |
return(0);
|
sl@0
|
361 |
n=0;
|
sl@0
|
362 |
}
|
sl@0
|
363 |
}
|
sl@0
|
364 |
if (n > 0)
|
sl@0
|
365 |
if (BIO_write(bp,buf,n) <= 0)
|
sl@0
|
366 |
return(0);
|
sl@0
|
367 |
return(1);
|
sl@0
|
368 |
}
|
sl@0
|
369 |
|
sl@0
|
370 |
EXPORT_C int ASN1_TIME_print(BIO *bp, ASN1_TIME *tm)
|
sl@0
|
371 |
{
|
sl@0
|
372 |
if(tm->type == V_ASN1_UTCTIME) return ASN1_UTCTIME_print(bp, tm);
|
sl@0
|
373 |
if(tm->type == V_ASN1_GENERALIZEDTIME)
|
sl@0
|
374 |
return ASN1_GENERALIZEDTIME_print(bp, tm);
|
sl@0
|
375 |
BIO_write(bp,"Bad time value",14);
|
sl@0
|
376 |
return(0);
|
sl@0
|
377 |
}
|
sl@0
|
378 |
|
sl@0
|
379 |
#ifndef EMULATOR
|
sl@0
|
380 |
static const char *mon[12]=
|
sl@0
|
381 |
{
|
sl@0
|
382 |
"Jan","Feb","Mar","Apr","May","Jun",
|
sl@0
|
383 |
"Jul","Aug","Sep","Oct","Nov","Dec"
|
sl@0
|
384 |
};
|
sl@0
|
385 |
#else
|
sl@0
|
386 |
static const char * const mon[12]=
|
sl@0
|
387 |
{
|
sl@0
|
388 |
"Jan","Feb","Mar","Apr","May","Jun",
|
sl@0
|
389 |
"Jul","Aug","Sep","Oct","Nov","Dec"
|
sl@0
|
390 |
};
|
sl@0
|
391 |
|
sl@0
|
392 |
#endif
|
sl@0
|
393 |
EXPORT_C int ASN1_GENERALIZEDTIME_print(BIO *bp, ASN1_GENERALIZEDTIME *tm)
|
sl@0
|
394 |
{
|
sl@0
|
395 |
char *v;
|
sl@0
|
396 |
int gmt=0;
|
sl@0
|
397 |
int i;
|
sl@0
|
398 |
int y=0,M=0,d=0,h=0,m=0,s=0;
|
sl@0
|
399 |
|
sl@0
|
400 |
i=tm->length;
|
sl@0
|
401 |
v=(char *)tm->data;
|
sl@0
|
402 |
|
sl@0
|
403 |
if (i < 12) goto err;
|
sl@0
|
404 |
if (v[i-1] == 'Z') gmt=1;
|
sl@0
|
405 |
for (i=0; i<12; i++)
|
sl@0
|
406 |
if ((v[i] > '9') || (v[i] < '0')) goto err;
|
sl@0
|
407 |
y= (v[0]-'0')*1000+(v[1]-'0')*100 + (v[2]-'0')*10+(v[3]-'0');
|
sl@0
|
408 |
M= (v[4]-'0')*10+(v[5]-'0');
|
sl@0
|
409 |
if ((M > 12) || (M < 1)) goto err;
|
sl@0
|
410 |
d= (v[6]-'0')*10+(v[7]-'0');
|
sl@0
|
411 |
h= (v[8]-'0')*10+(v[9]-'0');
|
sl@0
|
412 |
m= (v[10]-'0')*10+(v[11]-'0');
|
sl@0
|
413 |
if ( (v[12] >= '0') && (v[12] <= '9') &&
|
sl@0
|
414 |
(v[13] >= '0') && (v[13] <= '9'))
|
sl@0
|
415 |
s= (v[12]-'0')*10+(v[13]-'0');
|
sl@0
|
416 |
|
sl@0
|
417 |
if (BIO_printf(bp,"%s %2d %02d:%02d:%02d %d%s",
|
sl@0
|
418 |
mon[M-1],d,h,m,s,y,(gmt)?" GMT":"") <= 0)
|
sl@0
|
419 |
return(0);
|
sl@0
|
420 |
else
|
sl@0
|
421 |
return(1);
|
sl@0
|
422 |
err:
|
sl@0
|
423 |
BIO_write(bp,"Bad time value",14);
|
sl@0
|
424 |
return(0);
|
sl@0
|
425 |
}
|
sl@0
|
426 |
|
sl@0
|
427 |
EXPORT_C int ASN1_UTCTIME_print(BIO *bp, ASN1_UTCTIME *tm)
|
sl@0
|
428 |
{
|
sl@0
|
429 |
char *v;
|
sl@0
|
430 |
int gmt=0;
|
sl@0
|
431 |
int i;
|
sl@0
|
432 |
int y=0,M=0,d=0,h=0,m=0,s=0;
|
sl@0
|
433 |
|
sl@0
|
434 |
i=tm->length;
|
sl@0
|
435 |
v=(char *)tm->data;
|
sl@0
|
436 |
|
sl@0
|
437 |
if (i < 10) goto err;
|
sl@0
|
438 |
if (v[i-1] == 'Z') gmt=1;
|
sl@0
|
439 |
for (i=0; i<10; i++)
|
sl@0
|
440 |
if ((v[i] > '9') || (v[i] < '0')) goto err;
|
sl@0
|
441 |
y= (v[0]-'0')*10+(v[1]-'0');
|
sl@0
|
442 |
if (y < 50) y+=100;
|
sl@0
|
443 |
M= (v[2]-'0')*10+(v[3]-'0');
|
sl@0
|
444 |
if ((M > 12) || (M < 1)) goto err;
|
sl@0
|
445 |
d= (v[4]-'0')*10+(v[5]-'0');
|
sl@0
|
446 |
h= (v[6]-'0')*10+(v[7]-'0');
|
sl@0
|
447 |
m= (v[8]-'0')*10+(v[9]-'0');
|
sl@0
|
448 |
if ( (v[10] >= '0') && (v[10] <= '9') &&
|
sl@0
|
449 |
(v[11] >= '0') && (v[11] <= '9'))
|
sl@0
|
450 |
s= (v[10]-'0')*10+(v[11]-'0');
|
sl@0
|
451 |
|
sl@0
|
452 |
if (BIO_printf(bp,"%s %2d %02d:%02d:%02d %d%s",
|
sl@0
|
453 |
mon[M-1],d,h,m,s,y+1900,(gmt)?" GMT":"") <= 0)
|
sl@0
|
454 |
return(0);
|
sl@0
|
455 |
else
|
sl@0
|
456 |
return(1);
|
sl@0
|
457 |
err:
|
sl@0
|
458 |
BIO_write(bp,"Bad time value",14);
|
sl@0
|
459 |
return(0);
|
sl@0
|
460 |
}
|
sl@0
|
461 |
|
sl@0
|
462 |
EXPORT_C int X509_NAME_print(BIO *bp, X509_NAME *name, int obase)
|
sl@0
|
463 |
{
|
sl@0
|
464 |
char *s,*c,*b;
|
sl@0
|
465 |
int ret=0,l,i;
|
sl@0
|
466 |
|
sl@0
|
467 |
l=80-2-obase;
|
sl@0
|
468 |
|
sl@0
|
469 |
b=s=X509_NAME_oneline(name,NULL,0);
|
sl@0
|
470 |
if (!*s)
|
sl@0
|
471 |
{
|
sl@0
|
472 |
OPENSSL_free(b);
|
sl@0
|
473 |
return 1;
|
sl@0
|
474 |
}
|
sl@0
|
475 |
s++; /* skip the first slash */
|
sl@0
|
476 |
|
sl@0
|
477 |
c=s;
|
sl@0
|
478 |
for (;;)
|
sl@0
|
479 |
{
|
sl@0
|
480 |
#ifndef CHARSET_EBCDIC
|
sl@0
|
481 |
if ( ((*s == '/') &&
|
sl@0
|
482 |
((s[1] >= 'A') && (s[1] <= 'Z') && (
|
sl@0
|
483 |
(s[2] == '=') ||
|
sl@0
|
484 |
((s[2] >= 'A') && (s[2] <= 'Z') &&
|
sl@0
|
485 |
(s[3] == '='))
|
sl@0
|
486 |
))) ||
|
sl@0
|
487 |
(*s == '\0'))
|
sl@0
|
488 |
#else
|
sl@0
|
489 |
if ( ((*s == '/') &&
|
sl@0
|
490 |
(isupper(s[1]) && (
|
sl@0
|
491 |
(s[2] == '=') ||
|
sl@0
|
492 |
(isupper(s[2]) &&
|
sl@0
|
493 |
(s[3] == '='))
|
sl@0
|
494 |
))) ||
|
sl@0
|
495 |
(*s == '\0'))
|
sl@0
|
496 |
#endif
|
sl@0
|
497 |
{
|
sl@0
|
498 |
i=s-c;
|
sl@0
|
499 |
if (BIO_write(bp,c,i) != i) goto err;
|
sl@0
|
500 |
c+=i;
|
sl@0
|
501 |
c++;
|
sl@0
|
502 |
if (*s != '\0')
|
sl@0
|
503 |
{
|
sl@0
|
504 |
if (BIO_write(bp,", ",2) != 2) goto err;
|
sl@0
|
505 |
}
|
sl@0
|
506 |
l--;
|
sl@0
|
507 |
}
|
sl@0
|
508 |
if (*s == '\0') break;
|
sl@0
|
509 |
s++;
|
sl@0
|
510 |
l--;
|
sl@0
|
511 |
}
|
sl@0
|
512 |
|
sl@0
|
513 |
ret=1;
|
sl@0
|
514 |
if (0)
|
sl@0
|
515 |
{
|
sl@0
|
516 |
err:
|
sl@0
|
517 |
X509err(X509_F_X509_NAME_PRINT,ERR_R_BUF_LIB);
|
sl@0
|
518 |
}
|
sl@0
|
519 |
OPENSSL_free(b);
|
sl@0
|
520 |
return(ret);
|
sl@0
|
521 |
}
|
sl@0
|
522 |
|