ts_req_utils.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /* crypto/ts/ts_req_utils.c */
  2. /*
  3. * Written by Zoltan Glozik (zglozik@stones.com) for the OpenSSL project
  4. * 2002.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * licensing@OpenSSL.org.
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * (eay@cryptsoft.com). This product includes software written by Tim
  56. * Hudson (tjh@cryptsoft.com).
  57. *
  58. */
  59. #include <stdio.h>
  60. #include "cryptlib.h"
  61. #include <openssl/objects.h>
  62. #include <openssl/x509v3.h>
  63. #include <openssl/ts.h>
  64. int TS_REQ_set_version(TS_REQ *a, long version)
  65. {
  66. return ASN1_INTEGER_set(a->version, version);
  67. }
  68. long TS_REQ_get_version(const TS_REQ *a)
  69. {
  70. return ASN1_INTEGER_get(a->version);
  71. }
  72. int TS_REQ_set_msg_imprint(TS_REQ *a, TS_MSG_IMPRINT *msg_imprint)
  73. {
  74. TS_MSG_IMPRINT *new_msg_imprint;
  75. if (a->msg_imprint == msg_imprint)
  76. return 1;
  77. new_msg_imprint = TS_MSG_IMPRINT_dup(msg_imprint);
  78. if (new_msg_imprint == NULL) {
  79. TSerr(TS_F_TS_REQ_SET_MSG_IMPRINT, ERR_R_MALLOC_FAILURE);
  80. return 0;
  81. }
  82. TS_MSG_IMPRINT_free(a->msg_imprint);
  83. a->msg_imprint = new_msg_imprint;
  84. return 1;
  85. }
  86. TS_MSG_IMPRINT *TS_REQ_get_msg_imprint(TS_REQ *a)
  87. {
  88. return a->msg_imprint;
  89. }
  90. int TS_MSG_IMPRINT_set_algo(TS_MSG_IMPRINT *a, X509_ALGOR *alg)
  91. {
  92. X509_ALGOR *new_alg;
  93. if (a->hash_algo == alg)
  94. return 1;
  95. new_alg = X509_ALGOR_dup(alg);
  96. if (new_alg == NULL) {
  97. TSerr(TS_F_TS_MSG_IMPRINT_SET_ALGO, ERR_R_MALLOC_FAILURE);
  98. return 0;
  99. }
  100. X509_ALGOR_free(a->hash_algo);
  101. a->hash_algo = new_alg;
  102. return 1;
  103. }
  104. X509_ALGOR *TS_MSG_IMPRINT_get_algo(TS_MSG_IMPRINT *a)
  105. {
  106. return a->hash_algo;
  107. }
  108. int TS_MSG_IMPRINT_set_msg(TS_MSG_IMPRINT *a, unsigned char *d, int len)
  109. {
  110. return ASN1_OCTET_STRING_set(a->hashed_msg, d, len);
  111. }
  112. ASN1_OCTET_STRING *TS_MSG_IMPRINT_get_msg(TS_MSG_IMPRINT *a)
  113. {
  114. return a->hashed_msg;
  115. }
  116. int TS_REQ_set_policy_id(TS_REQ *a, ASN1_OBJECT *policy)
  117. {
  118. ASN1_OBJECT *new_policy;
  119. if (a->policy_id == policy)
  120. return 1;
  121. new_policy = OBJ_dup(policy);
  122. if (new_policy == NULL) {
  123. TSerr(TS_F_TS_REQ_SET_POLICY_ID, ERR_R_MALLOC_FAILURE);
  124. return 0;
  125. }
  126. ASN1_OBJECT_free(a->policy_id);
  127. a->policy_id = new_policy;
  128. return 1;
  129. }
  130. ASN1_OBJECT *TS_REQ_get_policy_id(TS_REQ *a)
  131. {
  132. return a->policy_id;
  133. }
  134. int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce)
  135. {
  136. ASN1_INTEGER *new_nonce;
  137. if (a->nonce == nonce)
  138. return 1;
  139. new_nonce = ASN1_INTEGER_dup(nonce);
  140. if (new_nonce == NULL) {
  141. TSerr(TS_F_TS_REQ_SET_NONCE, ERR_R_MALLOC_FAILURE);
  142. return 0;
  143. }
  144. ASN1_INTEGER_free(a->nonce);
  145. a->nonce = new_nonce;
  146. return 1;
  147. }
  148. const ASN1_INTEGER *TS_REQ_get_nonce(const TS_REQ *a)
  149. {
  150. return a->nonce;
  151. }
  152. int TS_REQ_set_cert_req(TS_REQ *a, int cert_req)
  153. {
  154. a->cert_req = cert_req ? 0xFF : 0x00;
  155. return 1;
  156. }
  157. int TS_REQ_get_cert_req(const TS_REQ *a)
  158. {
  159. return a->cert_req ? 1 : 0;
  160. }
  161. STACK_OF(X509_EXTENSION) *TS_REQ_get_exts(TS_REQ *a)
  162. {
  163. return a->extensions;
  164. }
  165. void TS_REQ_ext_free(TS_REQ *a)
  166. {
  167. if (!a)
  168. return;
  169. sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free);
  170. a->extensions = NULL;
  171. }
  172. int TS_REQ_get_ext_count(TS_REQ *a)
  173. {
  174. return X509v3_get_ext_count(a->extensions);
  175. }
  176. int TS_REQ_get_ext_by_NID(TS_REQ *a, int nid, int lastpos)
  177. {
  178. return X509v3_get_ext_by_NID(a->extensions, nid, lastpos);
  179. }
  180. int TS_REQ_get_ext_by_OBJ(TS_REQ *a, ASN1_OBJECT *obj, int lastpos)
  181. {
  182. return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos);
  183. }
  184. int TS_REQ_get_ext_by_critical(TS_REQ *a, int crit, int lastpos)
  185. {
  186. return X509v3_get_ext_by_critical(a->extensions, crit, lastpos);
  187. }
  188. X509_EXTENSION *TS_REQ_get_ext(TS_REQ *a, int loc)
  189. {
  190. return X509v3_get_ext(a->extensions, loc);
  191. }
  192. X509_EXTENSION *TS_REQ_delete_ext(TS_REQ *a, int loc)
  193. {
  194. return X509v3_delete_ext(a->extensions, loc);
  195. }
  196. int TS_REQ_add_ext(TS_REQ *a, X509_EXTENSION *ex, int loc)
  197. {
  198. return X509v3_add_ext(&a->extensions, ex, loc) != NULL;
  199. }
  200. void *TS_REQ_get_ext_d2i(TS_REQ *a, int nid, int *crit, int *idx)
  201. {
  202. return X509V3_get_d2i(a->extensions, nid, crit, idx);
  203. }