ecs_lib.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. /* crypto/ecdsa/ecs_lib.c */
  2. /* ====================================================================
  3. * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * 1. Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. *
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in
  14. * the documentation and/or other materials provided with the
  15. * distribution.
  16. *
  17. * 3. All advertising materials mentioning features or use of this
  18. * software must display the following acknowledgment:
  19. * "This product includes software developed by the OpenSSL Project
  20. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  21. *
  22. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  23. * endorse or promote products derived from this software without
  24. * prior written permission. For written permission, please contact
  25. * openssl-core@OpenSSL.org.
  26. *
  27. * 5. Products derived from this software may not be called "OpenSSL"
  28. * nor may "OpenSSL" appear in their names without prior written
  29. * permission of the OpenSSL Project.
  30. *
  31. * 6. Redistributions of any form whatsoever must retain the following
  32. * acknowledgment:
  33. * "This product includes software developed by the OpenSSL Project
  34. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  35. *
  36. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  37. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  39. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  40. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  41. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  42. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  43. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  44. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  45. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  46. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  47. * OF THE POSSIBILITY OF SUCH DAMAGE.
  48. * ====================================================================
  49. *
  50. * This product includes cryptographic software written by Eric Young
  51. * (eay@cryptsoft.com). This product includes software written by Tim
  52. * Hudson (tjh@cryptsoft.com).
  53. *
  54. */
  55. #include <string.h>
  56. #include "ecdsa.h"
  57. #include <openssl/engine.h>
  58. #include <openssl/err.h>
  59. const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
  60. static void ecdsa_finish(EC_KEY *);
  61. static const ECDSA_METHOD *default_ECDSA_method = NULL;
  62. void ECDSA_set_default_method(const ECDSA_METHOD *meth)
  63. {
  64. default_ECDSA_method = meth;
  65. }
  66. const ECDSA_METHOD *ECDSA_get_default_method(void)
  67. {
  68. if(!default_ECDSA_method)
  69. default_ECDSA_method = ECDSA_OpenSSL();
  70. return default_ECDSA_method;
  71. }
  72. int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
  73. {
  74. const ECDSA_METHOD *mtmp;
  75. ECDSA_DATA *ecdsa;
  76. ecdsa = ecdsa_check(eckey);
  77. if (ecdsa == NULL)
  78. return 0;
  79. mtmp = ecdsa->meth;
  80. #if 0
  81. if (mtmp->finish)
  82. mtmp->finish(eckey);
  83. #endif
  84. if (ecdsa->engine)
  85. {
  86. ENGINE_finish(ecdsa->engine);
  87. ecdsa->engine = NULL;
  88. }
  89. ecdsa->meth = meth;
  90. #if 0
  91. if (meth->init)
  92. meth->init(eckey);
  93. #endif
  94. return 1;
  95. }
  96. ECDSA_DATA *ECDSA_DATA_new(void)
  97. {
  98. return ECDSA_DATA_new_method(NULL);
  99. }
  100. ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
  101. {
  102. ECDSA_DATA *ret;
  103. ret=(ECDSA_DATA *)OPENSSL_malloc(sizeof(ECDSA_DATA));
  104. if (ret == NULL)
  105. {
  106. ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_MALLOC_FAILURE);
  107. return(NULL);
  108. }
  109. ret->init = NULL;
  110. ret->finish = ecdsa_finish;
  111. ret->kinv = NULL;
  112. ret->r = NULL;
  113. ret->meth = ECDSA_get_default_method();
  114. ret->engine = engine;
  115. if (!ret->engine)
  116. ret->engine = ENGINE_get_default_ECDSA();
  117. if (ret->engine)
  118. {
  119. ret->meth = ENGINE_get_ECDSA(ret->engine);
  120. if (!ret->meth)
  121. {
  122. ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_ENGINE_LIB);
  123. ENGINE_finish(ret->engine);
  124. OPENSSL_free(ret);
  125. return NULL;
  126. }
  127. }
  128. ret->flags = ret->meth->flags;
  129. CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
  130. #if 0
  131. if ((ret->meth->init != NULL) && !ret->meth->init(ret))
  132. {
  133. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
  134. OPENSSL_free(ret);
  135. ret=NULL;
  136. }
  137. #endif
  138. return(ret);
  139. }
  140. void ECDSA_DATA_free(ECDSA_DATA *r)
  141. {
  142. if (r->kinv)
  143. BN_clear_free(r->kinv);
  144. if (r->r)
  145. BN_clear_free(r->r);
  146. #if 0
  147. if (r->meth->finish)
  148. r->meth->finish(r);
  149. #endif
  150. if (r->engine)
  151. ENGINE_finish(r->engine);
  152. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
  153. OPENSSL_cleanse((void *)r, sizeof(ECDSA_DATA));
  154. OPENSSL_free(r);
  155. }
  156. ECDSA_DATA *ecdsa_check(EC_KEY *key)
  157. {
  158. if (key->meth_data)
  159. {
  160. if (key->meth_data->finish != ecdsa_finish)
  161. {
  162. key->meth_data->finish(key);
  163. key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
  164. }
  165. }
  166. else
  167. key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
  168. return (ECDSA_DATA *)key->meth_data;
  169. }
  170. static void ecdsa_finish(EC_KEY *key)
  171. {
  172. if (key->meth_data && key->meth_data->finish == ecdsa_finish)
  173. ECDSA_DATA_free((ECDSA_DATA *)key->meth_data);
  174. }
  175. int ECDSA_size(const EC_KEY *r)
  176. {
  177. int ret,i;
  178. ASN1_INTEGER bs;
  179. BIGNUM *order=NULL;
  180. unsigned char buf[4];
  181. if (r == NULL || r->group == NULL)
  182. return 0;
  183. if ((order = BN_new()) == NULL) return 0;
  184. if (!EC_GROUP_get_order(r->group,order,NULL))
  185. {
  186. BN_clear_free(order);
  187. return 0;
  188. }
  189. i=BN_num_bits(order);
  190. bs.length=(i+7)/8;
  191. bs.data=buf;
  192. bs.type=V_ASN1_INTEGER;
  193. /* If the top bit is set the asn1 encoding is 1 larger. */
  194. buf[0]=0xff;
  195. i=i2d_ASN1_INTEGER(&bs,NULL);
  196. i+=i; /* r and s */
  197. ret=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
  198. BN_clear_free(order);
  199. return(ret);
  200. }
  201. int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  202. CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
  203. {
  204. return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
  205. new_func, dup_func, free_func);
  206. }
  207. int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
  208. {
  209. ECDSA_DATA *ecdsa;
  210. ecdsa = ecdsa_check(d);
  211. if (ecdsa == NULL)
  212. return 0;
  213. return(CRYPTO_set_ex_data(&ecdsa->ex_data,idx,arg));
  214. }
  215. void *ECDSA_get_ex_data(EC_KEY *d, int idx)
  216. {
  217. ECDSA_DATA *ecdsa;
  218. ecdsa = ecdsa_check(d);
  219. if (ecdsa == NULL)
  220. return NULL;
  221. return(CRYPTO_get_ex_data(&ecdsa->ex_data,idx));
  222. }