ecs_lib.c 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
  59. static void ecdsa_finish(EC_KEY *);
  60. static const ECDSA_METHOD *default_ECDSA_method = NULL;
  61. void ECDSA_set_default_method(const ECDSA_METHOD *meth)
  62. {
  63. default_ECDSA_method = meth;
  64. }
  65. const ECDSA_METHOD *ECDSA_get_default_method(void)
  66. {
  67. if(!default_ECDSA_method)
  68. default_ECDSA_method = ECDSA_OpenSSL();
  69. return default_ECDSA_method;
  70. }
  71. int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth)
  72. {
  73. const ECDSA_METHOD *mtmp;
  74. ECDSA_DATA *ecdsa;
  75. ecdsa = ecdsa_check(eckey);
  76. if (ecdsa == NULL)
  77. return 0;
  78. mtmp = ecdsa->meth;
  79. #if 0
  80. if (mtmp->finish)
  81. mtmp->finish(eckey);
  82. #endif
  83. if (ecdsa->engine)
  84. {
  85. ENGINE_finish(ecdsa->engine);
  86. ecdsa->engine = NULL;
  87. }
  88. ecdsa->meth = meth;
  89. #if 0
  90. if (meth->init)
  91. meth->init(eckey);
  92. #endif
  93. return 1;
  94. }
  95. ECDSA_DATA *ECDSA_DATA_new(void)
  96. {
  97. return ECDSA_DATA_new_method(NULL);
  98. }
  99. ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
  100. {
  101. ECDSA_DATA *ret;
  102. ret=(ECDSA_DATA *)OPENSSL_malloc(sizeof(ECDSA_DATA));
  103. if (ret == NULL)
  104. {
  105. ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_MALLOC_FAILURE);
  106. return(NULL);
  107. }
  108. ret->init = NULL;
  109. ret->finish = ecdsa_finish;
  110. ret->kinv = NULL;
  111. ret->r = NULL;
  112. ret->meth = ECDSA_get_default_method();
  113. ret->engine = engine;
  114. if (!ret->engine)
  115. ret->engine = ENGINE_get_default_ECDSA();
  116. if (ret->engine)
  117. {
  118. ret->meth = ENGINE_get_ECDSA(ret->engine);
  119. if (!ret->meth)
  120. {
  121. ECDSAerr(ECDSA_F_ECDSA_DATA_NEW, ERR_R_ENGINE_LIB);
  122. ENGINE_finish(ret->engine);
  123. OPENSSL_free(ret);
  124. return NULL;
  125. }
  126. }
  127. ret->flags = ret->meth->flags;
  128. CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
  129. #if 0
  130. if ((ret->meth->init != NULL) && !ret->meth->init(ret))
  131. {
  132. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, ret, &ret->ex_data);
  133. OPENSSL_free(ret);
  134. ret=NULL;
  135. }
  136. #endif
  137. return(ret);
  138. }
  139. void ECDSA_DATA_free(ECDSA_DATA *r)
  140. {
  141. if (r->kinv)
  142. BN_clear_free(r->kinv);
  143. if (r->r)
  144. BN_clear_free(r->r);
  145. #if 0
  146. if (r->meth->finish)
  147. r->meth->finish(r);
  148. #endif
  149. if (r->engine)
  150. ENGINE_finish(r->engine);
  151. CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ECDSA, r, &r->ex_data);
  152. OPENSSL_cleanse((void *)r, sizeof(ECDSA_DATA));
  153. OPENSSL_free(r);
  154. }
  155. ECDSA_DATA *ecdsa_check(EC_KEY *key)
  156. {
  157. if (key->meth_data)
  158. {
  159. if (key->meth_data->finish != ecdsa_finish)
  160. {
  161. key->meth_data->finish(key);
  162. key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
  163. }
  164. }
  165. else
  166. key->meth_data = (EC_KEY_METH_DATA *)ECDSA_DATA_new();
  167. return (ECDSA_DATA *)key->meth_data;
  168. }
  169. static void ecdsa_finish(EC_KEY *key)
  170. {
  171. if (key->meth_data && key->meth_data->finish == ecdsa_finish)
  172. ECDSA_DATA_free((ECDSA_DATA *)key->meth_data);
  173. }
  174. int ECDSA_size(const EC_KEY *r)
  175. {
  176. int ret,i;
  177. ASN1_INTEGER bs;
  178. BIGNUM *order=NULL;
  179. unsigned char buf[4];
  180. if (r == NULL || r->group == NULL)
  181. return 0;
  182. if ((order = BN_new()) == NULL) return 0;
  183. if (!EC_GROUP_get_order(r->group,order,NULL))
  184. {
  185. BN_clear_free(order);
  186. return 0;
  187. }
  188. i=BN_num_bits(order);
  189. bs.length=(i+7)/8;
  190. bs.data=buf;
  191. bs.type=V_ASN1_INTEGER;
  192. /* If the top bit is set the asn1 encoding is 1 larger. */
  193. buf[0]=0xff;
  194. i=i2d_ASN1_INTEGER(&bs,NULL);
  195. i+=i; /* r and s */
  196. ret=ASN1_object_size(1,i,V_ASN1_SEQUENCE);
  197. BN_clear_free(order);
  198. return(ret);
  199. }
  200. int ECDSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
  201. CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
  202. {
  203. return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ECDSA, argl, argp,
  204. new_func, dup_func, free_func);
  205. }
  206. int ECDSA_set_ex_data(EC_KEY *d, int idx, void *arg)
  207. {
  208. ECDSA_DATA *ecdsa;
  209. ecdsa = ecdsa_check(d);
  210. if (ecdsa == NULL)
  211. return 0;
  212. return(CRYPTO_set_ex_data(&ecdsa->ex_data,idx,arg));
  213. }
  214. void *ECDSA_get_ex_data(EC_KEY *d, int idx)
  215. {
  216. ECDSA_DATA *ecdsa;
  217. ecdsa = ecdsa_check(d);
  218. if (ecdsa == NULL)
  219. return NULL;
  220. return(CRYPTO_get_ex_data(&ecdsa->ex_data,idx));
  221. }