]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/x509/t_req.c
Remove /* foo.c */ comments
[thirdparty/openssl.git] / crypto / x509 / t_req.c
CommitLineData
58964a49 1/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
d02b48c6
RE
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
0f113f3e 7 *
d02b48c6
RE
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
0f113f3e 14 *
d02b48c6
RE
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
0f113f3e 21 *
d02b48c6
RE
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
0f113f3e 36 * 4. If you include any Windows specific code (or a derivative thereof) from
d02b48c6
RE
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
0f113f3e 39 *
d02b48c6
RE
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
0f113f3e 51 *
d02b48c6
RE
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 */
57
58#include <stdio.h>
b39fc560 59#include "internal/cryptlib.h"
ec577822
BM
60#include <openssl/buffer.h>
61#include <openssl/bn.h>
62#include <openssl/objects.h>
63#include <openssl/x509.h>
87c49f62 64#include <openssl/x509v3.h>
3eeaab4b 65#ifndef OPENSSL_NO_RSA
0f113f3e 66# include <openssl/rsa.h>
3eeaab4b
NL
67#endif
68#ifndef OPENSSL_NO_DSA
0f113f3e 69# include <openssl/dsa.h>
3eeaab4b 70#endif
d02b48c6 71
4b618848 72#ifndef OPENSSL_NO_STDIO
6b691a5c 73int X509_REQ_print_fp(FILE *fp, X509_REQ *x)
0f113f3e
MC
74{
75 BIO *b;
76 int ret;
d02b48c6 77
0f113f3e
MC
78 if ((b = BIO_new(BIO_s_file())) == NULL) {
79 X509err(X509_F_X509_REQ_PRINT_FP, ERR_R_BUF_LIB);
80 return (0);
81 }
82 BIO_set_fp(b, fp, BIO_NOCLOSE);
83 ret = X509_REQ_print(b, x);
84 BIO_free(b);
85 return (ret);
86}
d02b48c6
RE
87#endif
88
0f113f3e
MC
89int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags,
90 unsigned long cflag)
91{
92 long l;
93 int i;
0f113f3e 94 EVP_PKEY *pkey;
0f113f3e
MC
95 STACK_OF(X509_EXTENSION) *exts;
96 char mlch = ' ';
97 int nmindent = 0;
fc85ac20 98
0f113f3e
MC
99 if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
100 mlch = '\n';
101 nmindent = 12;
102 }
fc85ac20 103
0f113f3e
MC
104 if (nmflags == X509_FLAG_COMPAT)
105 nmindent = 16;
d02b48c6 106
0f113f3e
MC
107 if (!(cflag & X509_FLAG_NO_HEADER)) {
108 if (BIO_write(bp, "Certificate Request:\n", 21) <= 0)
109 goto err;
110 if (BIO_write(bp, " Data:\n", 10) <= 0)
111 goto err;
112 }
113 if (!(cflag & X509_FLAG_NO_VERSION)) {
114 l = X509_REQ_get_version(x);
115 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, l) <= 0)
116 goto err;
117 }
118 if (!(cflag & X509_FLAG_NO_SUBJECT)) {
119 if (BIO_printf(bp, " Subject:%c", mlch) <= 0)
120 goto err;
7880e143
DSH
121 if (X509_NAME_print_ex(bp, X509_REQ_get_subject_name(x),
122 nmindent, nmflags) < 0)
0f113f3e
MC
123 goto err;
124 if (BIO_write(bp, "\n", 1) <= 0)
125 goto err;
126 }
127 if (!(cflag & X509_FLAG_NO_PUBKEY)) {
1f143e08
DSH
128 X509_PUBKEY *xpkey;
129 ASN1_OBJECT *koid;
0f113f3e
MC
130 if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0)
131 goto err;
132 if (BIO_printf(bp, "%12sPublic Key Algorithm: ", "") <= 0)
133 goto err;
1f143e08
DSH
134 xpkey = X509_REQ_get_X509_PUBKEY(x);
135 X509_PUBKEY_get0_param(&koid, NULL, NULL, NULL, xpkey);
136 if (i2a_ASN1_OBJECT(bp, koid) <= 0)
0f113f3e
MC
137 goto err;
138 if (BIO_puts(bp, "\n") <= 0)
139 goto err;
fc85ac20 140
0f113f3e
MC
141 pkey = X509_REQ_get_pubkey(x);
142 if (pkey == NULL) {
143 BIO_printf(bp, "%12sUnable to load Public Key\n", "");
144 ERR_print_errors(bp);
145 } else {
146 EVP_PKEY_print_public(bp, pkey, 16, NULL);
147 EVP_PKEY_free(pkey);
148 }
149 }
d02b48c6 150
0f113f3e
MC
151 if (!(cflag & X509_FLAG_NO_ATTRIBUTES)) {
152 /* may not be */
153 if (BIO_printf(bp, "%8sAttributes:\n", "") <= 0)
154 goto err;
fc85ac20 155
7880e143 156 if (X509_REQ_get_attr_count(x) == 0) {
0f113f3e
MC
157 if (BIO_printf(bp, "%12sa0:00\n", "") <= 0)
158 goto err;
159 } else {
7880e143 160 for (i = 0; i < X509_REQ_get_attr_count(x); i++) {
0f113f3e
MC
161 ASN1_TYPE *at;
162 X509_ATTRIBUTE *a;
163 ASN1_BIT_STRING *bs = NULL;
9b0a4531 164 ASN1_OBJECT *aobj;
0f113f3e 165 int j, type = 0, count = 1, ii = 0;
fc85ac20 166
7880e143 167 a = X509_REQ_get_attr(x, i);
9b0a4531
DSH
168 aobj = X509_ATTRIBUTE_get0_object(a);
169 if (X509_REQ_extension_nid(OBJ_obj2nid(aobj)))
0f113f3e
MC
170 continue;
171 if (BIO_printf(bp, "%12s", "") <= 0)
172 goto err;
9b0a4531
DSH
173 if ((j = i2a_ASN1_OBJECT(bp, aobj)) > 0) {
174 ii = 0;
175 count = X509_ATTRIBUTE_count(a);
0f113f3e 176 get_next:
9b0a4531
DSH
177 at = X509_ATTRIBUTE_get0_type(a, ii);
178 type = at->type;
179 bs = at->value.asn1_string;
0f113f3e
MC
180 }
181 for (j = 25 - j; j > 0; j--)
182 if (BIO_write(bp, " ", 1) != 1)
183 goto err;
184 if (BIO_puts(bp, ":") <= 0)
185 goto err;
186 if ((type == V_ASN1_PRINTABLESTRING) ||
187 (type == V_ASN1_T61STRING) ||
188 (type == V_ASN1_IA5STRING)) {
189 if (BIO_write(bp, (char *)bs->data, bs->length)
190 != bs->length)
191 goto err;
192 BIO_puts(bp, "\n");
193 } else {
194 BIO_puts(bp, "unable to print attribute\n");
195 }
196 if (++ii < count)
197 goto get_next;
198 }
199 }
200 }
201 if (!(cflag & X509_FLAG_NO_EXTENSIONS)) {
202 exts = X509_REQ_get_extensions(x);
203 if (exts) {
204 BIO_printf(bp, "%8sRequested Extensions:\n", "");
205 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
206 ASN1_OBJECT *obj;
207 X509_EXTENSION *ex;
208 int j;
209 ex = sk_X509_EXTENSION_value(exts, i);
210 if (BIO_printf(bp, "%12s", "") <= 0)
211 goto err;
212 obj = X509_EXTENSION_get_object(ex);
213 i2a_ASN1_OBJECT(bp, obj);
214 j = X509_EXTENSION_get_critical(ex);
215 if (BIO_printf(bp, ": %s\n", j ? "critical" : "") <= 0)
216 goto err;
217 if (!X509V3_EXT_print(bp, ex, cflag, 16)) {
218 BIO_printf(bp, "%16s", "");
4903abd5 219 ASN1_STRING_print(bp, X509_EXTENSION_get_data(ex));
0f113f3e
MC
220 }
221 if (BIO_write(bp, "\n", 1) <= 0)
222 goto err;
223 }
224 sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
225 }
226 }
d02b48c6 227
0f113f3e 228 if (!(cflag & X509_FLAG_NO_SIGDUMP)) {
7880e143
DSH
229 X509_ALGOR *sig_alg;
230 ASN1_BIT_STRING *sig;
231 X509_REQ_get0_signature(&sig, &sig_alg, x);
232 if (!X509_signature_print(bp, sig_alg, sig))
0f113f3e
MC
233 goto err;
234 }
d02b48c6 235
0f113f3e
MC
236 return (1);
237 err:
238 X509err(X509_F_X509_REQ_PRINT_EX, ERR_R_BUF_LIB);
239 return (0);
240}
fc85ac20
DSH
241
242int X509_REQ_print(BIO *bp, X509_REQ *x)
0f113f3e
MC
243{
244 return X509_REQ_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
245}