ecs_lib.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:7k
源码类别:

其他游戏

开发平台:

Visual C++

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