a_sign.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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. */
  57. /* ====================================================================
  58. * Copyright (c) 1998-2003 The OpenSSL Project. All rights reserved.
  59. *
  60. * Redistribution and use in source and binary forms, with or without
  61. * modification, are permitted provided that the following conditions
  62. * are met:
  63. *
  64. * 1. Redistributions of source code must retain the above copyright
  65. * notice, this list of conditions and the following disclaimer.
  66. *
  67. * 2. Redistributions in binary form must reproduce the above copyright
  68. * notice, this list of conditions and the following disclaimer in
  69. * the documentation and/or other materials provided with the
  70. * distribution.
  71. *
  72. * 3. All advertising materials mentioning features or use of this
  73. * software must display the following acknowledgment:
  74. * "This product includes software developed by the OpenSSL Project
  75. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  76. *
  77. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  78. * endorse or promote products derived from this software without
  79. * prior written permission. For written permission, please contact
  80. * openssl-core@openssl.org.
  81. *
  82. * 5. Products derived from this software may not be called "OpenSSL"
  83. * nor may "OpenSSL" appear in their names without prior written
  84. * permission of the OpenSSL Project.
  85. *
  86. * 6. Redistributions of any form whatsoever must retain the following
  87. * acknowledgment:
  88. * "This product includes software developed by the OpenSSL Project
  89. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  90. *
  91. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  92. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  93. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  94. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  95. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  96. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  97. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  98. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  99. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  100. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  101. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  102. * OF THE POSSIBILITY OF SUCH DAMAGE.
  103. * ====================================================================
  104. *
  105. * This product includes cryptographic software written by Eric Young
  106. * (eay@cryptsoft.com). This product includes software written by Tim
  107. * Hudson (tjh@cryptsoft.com).
  108. *
  109. */
  110. #include <stdio.h>
  111. #include <time.h>
  112. #include "internal/cryptlib.h"
  113. #ifndef NO_SYS_TYPES_H
  114. # include <sys/types.h>
  115. #endif
  116. #include <openssl/bn.h>
  117. #include <openssl/evp.h>
  118. #include <openssl/x509.h>
  119. #include <openssl/objects.h>
  120. #include <openssl/buffer.h>
  121. #include "internal/asn1_int.h"
  122. #include "internal/evp_int.h"
  123. #ifndef NO_ASN1_OLD
  124. int ASN1_sign(i2d_of_void *i2d, X509_ALGOR *algor1, X509_ALGOR *algor2,
  125. ASN1_BIT_STRING *signature, char *data, EVP_PKEY *pkey,
  126. const EVP_MD *type)
  127. {
  128. EVP_MD_CTX *ctx = EVP_MD_CTX_new();
  129. unsigned char *p, *buf_in = NULL, *buf_out = NULL;
  130. int i, inl = 0, outl = 0, outll = 0;
  131. X509_ALGOR *a;
  132. if (ctx == NULL) {
  133. ASN1err(ASN1_F_ASN1_SIGN, ERR_R_MALLOC_FAILURE);
  134. goto err;
  135. }
  136. for (i = 0; i < 2; i++) {
  137. if (i == 0)
  138. a = algor1;
  139. else
  140. a = algor2;
  141. if (a == NULL)
  142. continue;
  143. if (type->pkey_type == NID_dsaWithSHA1) {
  144. /*
  145. * special case: RFC 2459 tells us to omit 'parameters' with
  146. * id-dsa-with-sha1
  147. */
  148. ASN1_TYPE_free(a->parameter);
  149. a->parameter = NULL;
  150. } else if ((a->parameter == NULL) ||
  151. (a->parameter->type != V_ASN1_NULL)) {
  152. ASN1_TYPE_free(a->parameter);
  153. if ((a->parameter = ASN1_TYPE_new()) == NULL)
  154. goto err;
  155. a->parameter->type = V_ASN1_NULL;
  156. }
  157. ASN1_OBJECT_free(a->algorithm);
  158. a->algorithm = OBJ_nid2obj(type->pkey_type);
  159. if (a->algorithm == NULL) {
  160. ASN1err(ASN1_F_ASN1_SIGN, ASN1_R_UNKNOWN_OBJECT_TYPE);
  161. goto err;
  162. }
  163. if (a->algorithm->length == 0) {
  164. ASN1err(ASN1_F_ASN1_SIGN,
  165. ASN1_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD);
  166. goto err;
  167. }
  168. }
  169. inl = i2d(data, NULL);
  170. buf_in = OPENSSL_malloc((unsigned int)inl);
  171. outll = outl = EVP_PKEY_size(pkey);
  172. buf_out = OPENSSL_malloc((unsigned int)outl);
  173. if ((buf_in == NULL) || (buf_out == NULL)) {
  174. outl = 0;
  175. ASN1err(ASN1_F_ASN1_SIGN, ERR_R_MALLOC_FAILURE);
  176. goto err;
  177. }
  178. p = buf_in;
  179. i2d(data, &p);
  180. if (!EVP_SignInit_ex(ctx, type, NULL)
  181. || !EVP_SignUpdate(ctx, (unsigned char *)buf_in, inl)
  182. || !EVP_SignFinal(ctx, (unsigned char *)buf_out,
  183. (unsigned int *)&outl, pkey)) {
  184. outl = 0;
  185. ASN1err(ASN1_F_ASN1_SIGN, ERR_R_EVP_LIB);
  186. goto err;
  187. }
  188. OPENSSL_free(signature->data);
  189. signature->data = buf_out;
  190. buf_out = NULL;
  191. signature->length = outl;
  192. /*
  193. * In the interests of compatibility, I'll make sure that the bit string
  194. * has a 'not-used bits' value of 0
  195. */
  196. signature->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
  197. signature->flags |= ASN1_STRING_FLAG_BITS_LEFT;
  198. err:
  199. EVP_MD_CTX_free(ctx);
  200. OPENSSL_clear_free((char *)buf_in, (unsigned int)inl);
  201. OPENSSL_clear_free((char *)buf_out, outll);
  202. return (outl);
  203. }
  204. #endif
  205. int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1,
  206. X509_ALGOR *algor2, ASN1_BIT_STRING *signature, void *asn,
  207. EVP_PKEY *pkey, const EVP_MD *type)
  208. {
  209. EVP_MD_CTX *ctx = EVP_MD_CTX_new();
  210. if (ctx == NULL) {
  211. ASN1err(ASN1_F_ASN1_ITEM_SIGN, ERR_R_MALLOC_FAILURE);
  212. return 0;
  213. }
  214. if (!EVP_DigestSignInit(ctx, NULL, type, NULL, pkey)) {
  215. EVP_MD_CTX_free(ctx);
  216. return 0;
  217. }
  218. return ASN1_item_sign_ctx(it, algor1, algor2, signature, asn, ctx);
  219. }
  220. int ASN1_item_sign_ctx(const ASN1_ITEM *it,
  221. X509_ALGOR *algor1, X509_ALGOR *algor2,
  222. ASN1_BIT_STRING *signature, void *asn, EVP_MD_CTX *ctx)
  223. {
  224. const EVP_MD *type;
  225. EVP_PKEY *pkey;
  226. unsigned char *buf_in = NULL, *buf_out = NULL;
  227. size_t inl = 0, outl = 0, outll = 0;
  228. int signid, paramtype;
  229. int rv;
  230. type = EVP_MD_CTX_md(ctx);
  231. pkey = EVP_PKEY_CTX_get0_pkey(EVP_MD_CTX_pkey_ctx(ctx));
  232. if (!type || !pkey) {
  233. ASN1err(ASN1_F_ASN1_ITEM_SIGN_CTX, ASN1_R_CONTEXT_NOT_INITIALISED);
  234. return 0;
  235. }
  236. if (pkey->ameth->item_sign) {
  237. rv = pkey->ameth->item_sign(ctx, it, asn, algor1, algor2, signature);
  238. if (rv == 1)
  239. outl = signature->length;
  240. /*-
  241. * Return value meanings:
  242. * <=0: error.
  243. * 1: method does everything.
  244. * 2: carry on as normal.
  245. * 3: ASN1 method sets algorithm identifiers: just sign.
  246. */
  247. if (rv <= 0)
  248. ASN1err(ASN1_F_ASN1_ITEM_SIGN_CTX, ERR_R_EVP_LIB);
  249. if (rv <= 1)
  250. goto err;
  251. } else
  252. rv = 2;
  253. if (rv == 2) {
  254. if (!pkey->ameth ||
  255. !OBJ_find_sigid_by_algs(&signid,
  256. EVP_MD_nid(type),
  257. pkey->ameth->pkey_id)) {
  258. ASN1err(ASN1_F_ASN1_ITEM_SIGN_CTX,
  259. ASN1_R_DIGEST_AND_KEY_TYPE_NOT_SUPPORTED);
  260. return 0;
  261. }
  262. if (pkey->ameth->pkey_flags & ASN1_PKEY_SIGPARAM_NULL)
  263. paramtype = V_ASN1_NULL;
  264. else
  265. paramtype = V_ASN1_UNDEF;
  266. if (algor1)
  267. X509_ALGOR_set0(algor1, OBJ_nid2obj(signid), paramtype, NULL);
  268. if (algor2)
  269. X509_ALGOR_set0(algor2, OBJ_nid2obj(signid), paramtype, NULL);
  270. }
  271. inl = ASN1_item_i2d(asn, &buf_in, it);
  272. outll = outl = EVP_PKEY_size(pkey);
  273. buf_out = OPENSSL_malloc((unsigned int)outl);
  274. if ((buf_in == NULL) || (buf_out == NULL)) {
  275. outl = 0;
  276. ASN1err(ASN1_F_ASN1_ITEM_SIGN_CTX, ERR_R_MALLOC_FAILURE);
  277. goto err;
  278. }
  279. if (!EVP_DigestSignUpdate(ctx, buf_in, inl)
  280. || !EVP_DigestSignFinal(ctx, buf_out, &outl)) {
  281. outl = 0;
  282. ASN1err(ASN1_F_ASN1_ITEM_SIGN_CTX, ERR_R_EVP_LIB);
  283. goto err;
  284. }
  285. OPENSSL_free(signature->data);
  286. signature->data = buf_out;
  287. buf_out = NULL;
  288. signature->length = outl;
  289. /*
  290. * In the interests of compatibility, I'll make sure that the bit string
  291. * has a 'not-used bits' value of 0
  292. */
  293. signature->flags &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
  294. signature->flags |= ASN1_STRING_FLAG_BITS_LEFT;
  295. err:
  296. EVP_MD_CTX_free(ctx);
  297. OPENSSL_clear_free((char *)buf_in, (unsigned int)inl);
  298. OPENSSL_clear_free((char *)buf_out, outll);
  299. return (outl);
  300. }