Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

245 rader
8.1 KiB

  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  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.
  7. *
  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).
  14. *
  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.
  21. *
  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 :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  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.
  51. *
  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. #include <stdio.h>
  57. #include <openssl/bn.h>
  58. #include <openssl/buffer.h>
  59. #include <openssl/err.h>
  60. #include <openssl/objects.h>
  61. #include <openssl/x509.h>
  62. #include <openssl/x509v3.h>
  63. int X509_REQ_print_fp(FILE *fp, X509_REQ *x) {
  64. BIO *bio = BIO_new_fp(fp, BIO_NOCLOSE);
  65. if (bio == NULL) {
  66. OPENSSL_PUT_ERROR(X509, ERR_R_BUF_LIB);
  67. return 0;
  68. }
  69. int ret = X509_REQ_print(bio, x);
  70. BIO_free(bio);
  71. return ret;
  72. }
  73. int X509_REQ_print_ex(BIO *bio, X509_REQ *x, unsigned long nmflags,
  74. unsigned long cflag) {
  75. long l;
  76. EVP_PKEY *pkey;
  77. STACK_OF(X509_ATTRIBUTE) * sk;
  78. char mlch = ' ';
  79. int nmindent = 0;
  80. if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
  81. mlch = '\n';
  82. nmindent = 12;
  83. }
  84. if (nmflags == X509_FLAG_COMPAT) {
  85. nmindent = 16;
  86. }
  87. X509_REQ_INFO *ri = x->req_info;
  88. if (!(cflag & X509_FLAG_NO_HEADER)) {
  89. if (BIO_write(bio, "Certificate Request:\n", 21) <= 0 ||
  90. BIO_write(bio, " Data:\n", 10) <= 0) {
  91. goto err;
  92. }
  93. }
  94. if (!(cflag & X509_FLAG_NO_VERSION)) {
  95. l = X509_REQ_get_version(x);
  96. if (BIO_printf(bio, "%8sVersion: %ld (0x%lx)\n", "", l + 1, l) <= 0) {
  97. goto err;
  98. }
  99. }
  100. if (!(cflag & X509_FLAG_NO_SUBJECT)) {
  101. if (BIO_printf(bio, " Subject:%c", mlch) <= 0 ||
  102. X509_NAME_print_ex(bio, ri->subject, nmindent, nmflags) < 0 ||
  103. BIO_write(bio, "\n", 1) <= 0) {
  104. goto err;
  105. }
  106. }
  107. if (!(cflag & X509_FLAG_NO_PUBKEY)) {
  108. if (BIO_write(bio, " Subject Public Key Info:\n", 33) <= 0 ||
  109. BIO_printf(bio, "%12sPublic Key Algorithm: ", "") <= 0 ||
  110. i2a_ASN1_OBJECT(bio, ri->pubkey->algor->algorithm) <= 0 ||
  111. BIO_puts(bio, "\n") <= 0) {
  112. goto err;
  113. }
  114. pkey = X509_REQ_get_pubkey(x);
  115. if (pkey == NULL) {
  116. BIO_printf(bio, "%12sUnable to load Public Key\n", "");
  117. ERR_print_errors(bio);
  118. } else {
  119. EVP_PKEY_print_public(bio, pkey, 16, NULL);
  120. EVP_PKEY_free(pkey);
  121. }
  122. }
  123. if (!(cflag & X509_FLAG_NO_ATTRIBUTES)) {
  124. if (BIO_printf(bio, "%8sAttributes:\n", "") <= 0) {
  125. goto err;
  126. }
  127. sk = x->req_info->attributes;
  128. if (sk_X509_ATTRIBUTE_num(sk) == 0) {
  129. if (BIO_printf(bio, "%12sa0:00\n", "") <= 0) {
  130. goto err;
  131. }
  132. } else {
  133. size_t i;
  134. for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) {
  135. X509_ATTRIBUTE *a = sk_X509_ATTRIBUTE_value(sk, i);
  136. ASN1_OBJECT *aobj = X509_ATTRIBUTE_get0_object(a);
  137. if (X509_REQ_extension_nid(OBJ_obj2nid(aobj))) {
  138. continue;
  139. }
  140. if (BIO_printf(bio, "%12s", "") <= 0) {
  141. goto err;
  142. }
  143. const int num_attrs = X509_ATTRIBUTE_count(a);
  144. const int obj_str_len = i2a_ASN1_OBJECT(bio, aobj);
  145. if (obj_str_len <= 0) {
  146. if (BIO_puts(bio, "(Unable to print attribute ID.)\n") < 0) {
  147. goto err;
  148. } else {
  149. continue;
  150. }
  151. }
  152. int j;
  153. for (j = 0; j < num_attrs; j++) {
  154. const ASN1_TYPE *at = X509_ATTRIBUTE_get0_type(a, j);
  155. const int type = at->type;
  156. ASN1_BIT_STRING *bs = at->value.asn1_string;
  157. int k;
  158. for (k = 25 - obj_str_len; k > 0; k--) {
  159. if (BIO_write(bio, " ", 1) != 1) {
  160. goto err;
  161. }
  162. }
  163. if (BIO_puts(bio, ":") <= 0) {
  164. goto err;
  165. }
  166. if (type == V_ASN1_PRINTABLESTRING ||
  167. type == V_ASN1_UTF8STRING ||
  168. type == V_ASN1_IA5STRING ||
  169. type == V_ASN1_T61STRING) {
  170. if (BIO_write(bio, (char *)bs->data, bs->length) != bs->length) {
  171. goto err;
  172. }
  173. BIO_puts(bio, "\n");
  174. } else {
  175. BIO_puts(bio, "unable to print attribute\n");
  176. }
  177. }
  178. }
  179. }
  180. }
  181. if (!(cflag & X509_FLAG_NO_EXTENSIONS)) {
  182. STACK_OF(X509_EXTENSION) *exts = X509_REQ_get_extensions(x);
  183. if (exts) {
  184. BIO_printf(bio, "%8sRequested Extensions:\n", "");
  185. size_t i;
  186. for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
  187. X509_EXTENSION *ex = sk_X509_EXTENSION_value(exts, i);
  188. if (BIO_printf(bio, "%12s", "") <= 0) {
  189. goto err;
  190. }
  191. ASN1_OBJECT *obj = X509_EXTENSION_get_object(ex);
  192. i2a_ASN1_OBJECT(bio, obj);
  193. const int is_critical = X509_EXTENSION_get_critical(ex);
  194. if (BIO_printf(bio, ": %s\n", is_critical ? "critical" : "") <= 0) {
  195. goto err;
  196. }
  197. if (!X509V3_EXT_print(bio, ex, cflag, 16)) {
  198. BIO_printf(bio, "%16s", "");
  199. ASN1_STRING_print(bio, X509_EXTENSION_get_data(ex));
  200. }
  201. if (BIO_write(bio, "\n", 1) <= 0) {
  202. goto err;
  203. }
  204. }
  205. sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);
  206. }
  207. }
  208. if (!(cflag & X509_FLAG_NO_SIGDUMP) &&
  209. !X509_signature_print(bio, x->sig_alg, x->signature)) {
  210. goto err;
  211. }
  212. return 1;
  213. err:
  214. OPENSSL_PUT_ERROR(X509, ERR_R_BUF_LIB);
  215. return 0;
  216. }
  217. int X509_REQ_print(BIO *bio, X509_REQ *req) {
  218. return X509_REQ_print_ex(bio, req, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
  219. }