You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

374 lines
9.2 KiB

  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. #include <openssl/asn1.h>
  57. #include <openssl/asn1t.h>
  58. #include <openssl/err.h>
  59. #include <openssl/evp.h>
  60. #include <openssl/mem.h>
  61. #include <openssl/obj.h>
  62. #include <openssl/x509.h>
  63. #include "../evp/internal.h"
  64. /* Minor tweak to operation: free up EVP_PKEY */
  65. static int pubkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
  66. void *exarg)
  67. {
  68. if (operation == ASN1_OP_FREE_POST)
  69. {
  70. X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval;
  71. EVP_PKEY_free(pubkey->pkey);
  72. }
  73. return 1;
  74. }
  75. ASN1_SEQUENCE_cb(X509_PUBKEY, pubkey_cb) = {
  76. ASN1_SIMPLE(X509_PUBKEY, algor, X509_ALGOR),
  77. ASN1_SIMPLE(X509_PUBKEY, public_key, ASN1_BIT_STRING)
  78. } ASN1_SEQUENCE_END_cb(X509_PUBKEY, X509_PUBKEY)
  79. IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY)
  80. int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey)
  81. {
  82. X509_PUBKEY *pk=NULL;
  83. if (x == NULL) return(0);
  84. if ((pk=X509_PUBKEY_new()) == NULL) goto error;
  85. if (pkey->ameth)
  86. {
  87. if (pkey->ameth->pub_encode)
  88. {
  89. if (!pkey->ameth->pub_encode(pk, pkey))
  90. {
  91. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_set, X509_R_PUBLIC_KEY_ENCODE_ERROR);
  92. goto error;
  93. }
  94. }
  95. else
  96. {
  97. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_set, X509_R_METHOD_NOT_SUPPORTED);
  98. goto error;
  99. }
  100. }
  101. else
  102. {
  103. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_set, X509_R_UNSUPPORTED_ALGORITHM);
  104. goto error;
  105. }
  106. if (*x != NULL)
  107. X509_PUBKEY_free(*x);
  108. *x=pk;
  109. return 1;
  110. error:
  111. if (pk != NULL) X509_PUBKEY_free(pk);
  112. return 0;
  113. }
  114. EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key)
  115. {
  116. EVP_PKEY *ret=NULL;
  117. if (key == NULL) goto error;
  118. if (key->pkey != NULL)
  119. {
  120. return EVP_PKEY_dup(key->pkey);
  121. }
  122. if (key->public_key == NULL) goto error;
  123. if ((ret = EVP_PKEY_new()) == NULL)
  124. {
  125. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_get, ERR_R_MALLOC_FAILURE);
  126. goto error;
  127. }
  128. if (!EVP_PKEY_set_type(ret, OBJ_obj2nid(key->algor->algorithm)))
  129. {
  130. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_get, X509_R_UNSUPPORTED_ALGORITHM);
  131. goto error;
  132. }
  133. if (ret->ameth->pub_decode)
  134. {
  135. if (!ret->ameth->pub_decode(ret, key))
  136. {
  137. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_get, X509_R_PUBLIC_KEY_DECODE_ERROR);
  138. goto error;
  139. }
  140. }
  141. else
  142. {
  143. OPENSSL_PUT_ERROR(X509, X509_PUBKEY_get, X509_R_METHOD_NOT_SUPPORTED);
  144. goto error;
  145. }
  146. /* Check to see if another thread set key->pkey first */
  147. CRYPTO_w_lock(CRYPTO_LOCK_EVP_PKEY);
  148. if (key->pkey)
  149. {
  150. CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY);
  151. EVP_PKEY_free(ret);
  152. ret = key->pkey;
  153. }
  154. else
  155. {
  156. key->pkey = ret;
  157. CRYPTO_w_unlock(CRYPTO_LOCK_EVP_PKEY);
  158. }
  159. return EVP_PKEY_dup(ret);
  160. error:
  161. if (ret != NULL)
  162. EVP_PKEY_free(ret);
  163. return(NULL);
  164. }
  165. /* Now two pseudo ASN1 routines that take an EVP_PKEY structure
  166. * and encode or decode as X509_PUBKEY
  167. */
  168. EVP_PKEY *d2i_PUBKEY(EVP_PKEY **a, const unsigned char **pp,
  169. long length)
  170. {
  171. X509_PUBKEY *xpk;
  172. EVP_PKEY *pktmp;
  173. xpk = d2i_X509_PUBKEY(NULL, pp, length);
  174. if(!xpk) return NULL;
  175. pktmp = X509_PUBKEY_get(xpk);
  176. X509_PUBKEY_free(xpk);
  177. if(!pktmp) return NULL;
  178. if(a)
  179. {
  180. EVP_PKEY_free(*a);
  181. *a = pktmp;
  182. }
  183. return pktmp;
  184. }
  185. int i2d_PUBKEY(const EVP_PKEY *a, unsigned char **pp)
  186. {
  187. X509_PUBKEY *xpk=NULL;
  188. int ret;
  189. if(!a) return 0;
  190. if(!X509_PUBKEY_set(&xpk, (EVP_PKEY*) a)) return 0;
  191. ret = i2d_X509_PUBKEY(xpk, pp);
  192. X509_PUBKEY_free(xpk);
  193. return ret;
  194. }
  195. /* The following are equivalents but which return RSA and DSA
  196. * keys
  197. */
  198. RSA *d2i_RSA_PUBKEY(RSA **a, const unsigned char **pp,
  199. long length)
  200. {
  201. EVP_PKEY *pkey;
  202. RSA *key;
  203. const unsigned char *q;
  204. q = *pp;
  205. pkey = d2i_PUBKEY(NULL, &q, length);
  206. if (!pkey) return NULL;
  207. key = EVP_PKEY_get1_RSA(pkey);
  208. EVP_PKEY_free(pkey);
  209. if (!key) return NULL;
  210. *pp = q;
  211. if (a)
  212. {
  213. RSA_free(*a);
  214. *a = key;
  215. }
  216. return key;
  217. }
  218. int i2d_RSA_PUBKEY(const RSA *a, unsigned char **pp)
  219. {
  220. EVP_PKEY *pktmp;
  221. int ret;
  222. if (!a) return 0;
  223. pktmp = EVP_PKEY_new();
  224. if (!pktmp)
  225. {
  226. OPENSSL_PUT_ERROR(X509, i2d_RSA_PUBKEY, ERR_R_MALLOC_FAILURE);
  227. return 0;
  228. }
  229. EVP_PKEY_set1_RSA(pktmp, (RSA*) a);
  230. ret = i2d_PUBKEY(pktmp, pp);
  231. EVP_PKEY_free(pktmp);
  232. return ret;
  233. }
  234. #ifndef OPENSSL_NO_DSA
  235. DSA *d2i_DSA_PUBKEY(DSA **a, const unsigned char **pp,
  236. long length)
  237. {
  238. EVP_PKEY *pkey;
  239. DSA *key;
  240. const unsigned char *q;
  241. q = *pp;
  242. pkey = d2i_PUBKEY(NULL, &q, length);
  243. if (!pkey) return NULL;
  244. key = EVP_PKEY_get1_DSA(pkey);
  245. EVP_PKEY_free(pkey);
  246. if (!key) return NULL;
  247. *pp = q;
  248. if (a)
  249. {
  250. DSA_free(*a);
  251. *a = key;
  252. }
  253. return key;
  254. }
  255. int i2d_DSA_PUBKEY(const DSA *a, unsigned char **pp)
  256. {
  257. EVP_PKEY *pktmp;
  258. int ret;
  259. if(!a) return 0;
  260. pktmp = EVP_PKEY_new();
  261. if(!pktmp)
  262. {
  263. OPENSSL_PUT_ERROR(X509, i2d_DSA_PUBKEY, ERR_R_MALLOC_FAILURE);
  264. return 0;
  265. }
  266. EVP_PKEY_set1_DSA(pktmp, (DSA*) a);
  267. ret = i2d_PUBKEY(pktmp, pp);
  268. EVP_PKEY_free(pktmp);
  269. return ret;
  270. }
  271. #endif
  272. EC_KEY *d2i_EC_PUBKEY(EC_KEY **a, const unsigned char **pp, long length)
  273. {
  274. EVP_PKEY *pkey;
  275. EC_KEY *key;
  276. const unsigned char *q;
  277. q = *pp;
  278. pkey = d2i_PUBKEY(NULL, &q, length);
  279. if (!pkey) return(NULL);
  280. key = EVP_PKEY_get1_EC_KEY(pkey);
  281. EVP_PKEY_free(pkey);
  282. if (!key) return(NULL);
  283. *pp = q;
  284. if (a)
  285. {
  286. EC_KEY_free(*a);
  287. *a = key;
  288. }
  289. return(key);
  290. }
  291. int i2d_EC_PUBKEY(const EC_KEY *a, unsigned char **pp)
  292. {
  293. EVP_PKEY *pktmp;
  294. int ret;
  295. if (!a) return(0);
  296. if ((pktmp = EVP_PKEY_new()) == NULL)
  297. {
  298. OPENSSL_PUT_ERROR(X509, i2d_EC_PUBKEY, ERR_R_MALLOC_FAILURE);
  299. return(0);
  300. }
  301. EVP_PKEY_set1_EC_KEY(pktmp, (EC_KEY*) a);
  302. ret = i2d_PUBKEY(pktmp, pp);
  303. EVP_PKEY_free(pktmp);
  304. return(ret);
  305. }
  306. int X509_PUBKEY_set0_param(X509_PUBKEY *pub, const ASN1_OBJECT *aobj,
  307. int ptype, void *pval,
  308. unsigned char *penc, int penclen)
  309. {
  310. if (!X509_ALGOR_set0(pub->algor, aobj, ptype, pval))
  311. return 0;
  312. if (penc)
  313. {
  314. if (pub->public_key->data)
  315. OPENSSL_free(pub->public_key->data);
  316. pub->public_key->data = penc;
  317. pub->public_key->length = penclen;
  318. /* Set number of unused bits to zero */
  319. pub->public_key->flags&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
  320. pub->public_key->flags|=ASN1_STRING_FLAG_BITS_LEFT;
  321. }
  322. return 1;
  323. }
  324. int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
  325. const unsigned char **pk, int *ppklen,
  326. X509_ALGOR **pa,
  327. X509_PUBKEY *pub)
  328. {
  329. if (ppkalg)
  330. *ppkalg = pub->algor->algorithm;
  331. if (pk)
  332. {
  333. *pk = pub->public_key->data;
  334. *ppklen = pub->public_key->length;
  335. }
  336. if (pa)
  337. *pa = pub->algor;
  338. return 1;
  339. }