Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
 
 

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