| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | /* crypto/evp/p_lib.c */ | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This package is an SSL implementation written | 
					
						
							|  |  |  |  * by Eric Young (eay@cryptsoft.com). | 
					
						
							|  |  |  |  * The implementation was written so as to conform with Netscapes SSL. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * This library is free for commercial and non-commercial use as long as | 
					
						
							|  |  |  |  * the following conditions are aheared to.  The following conditions | 
					
						
							|  |  |  |  * apply to all code found in this distribution, be it the RC4, RSA, | 
					
						
							|  |  |  |  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation | 
					
						
							|  |  |  |  * included with this distribution is covered by the same copyright terms | 
					
						
							|  |  |  |  * except that the holder is Tim Hudson (tjh@cryptsoft.com). | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Copyright remains Eric Young's, and as such any Copyright notices in | 
					
						
							|  |  |  |  * the code are not to be removed. | 
					
						
							|  |  |  |  * If this package is used in a product, Eric Young should be given attribution | 
					
						
							|  |  |  |  * as the author of the parts of the library used. | 
					
						
							|  |  |  |  * This can be in the form of a textual message at program startup or | 
					
						
							|  |  |  |  * in documentation (online or textual) provided with the package. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  * modification, are permitted provided that the following conditions | 
					
						
							|  |  |  |  * are met: | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the copyright | 
					
						
							|  |  |  |  *    notice, this list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright | 
					
						
							|  |  |  |  *    notice, this list of conditions and the following disclaimer in the | 
					
						
							|  |  |  |  *    documentation and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * 3. All advertising materials mentioning features or use of this software | 
					
						
							|  |  |  |  *    must display the following acknowledgement: | 
					
						
							|  |  |  |  *    "This product includes cryptographic software written by | 
					
						
							|  |  |  |  *     Eric Young (eay@cryptsoft.com)" | 
					
						
							|  |  |  |  *    The word 'cryptographic' can be left out if the rouines from the library | 
					
						
							|  |  |  |  *    being used are not cryptographic related :-). | 
					
						
							|  |  |  |  * 4. If you include any Windows specific code (or a derivative thereof) from  | 
					
						
							|  |  |  |  *    the apps directory (application code) you must include an acknowledgement: | 
					
						
							|  |  |  |  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | 
					
						
							|  |  |  |  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
					
						
							|  |  |  |  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | 
					
						
							|  |  |  |  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | 
					
						
							|  |  |  |  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | 
					
						
							|  |  |  |  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
					
						
							|  |  |  |  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | 
					
						
							|  |  |  |  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 
					
						
							|  |  |  |  * SUCH DAMAGE. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * The licence and distribution terms for any publically available version or | 
					
						
							|  |  |  |  * derivative of this code cannot be changed.  i.e. this code cannot simply be | 
					
						
							|  |  |  |  * copied and put under another distribution licence | 
					
						
							|  |  |  |  * [including the GNU Public Licence.] | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include "cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							|  |  |  | #include <openssl/err.h>
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/objects.h>
 | 
					
						
							|  |  |  | #include <openssl/evp.h>
 | 
					
						
							|  |  |  | #include <openssl/asn1_mac.h>
 | 
					
						
							|  |  |  | #include <openssl/x509.h>
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void EVP_PKEY_free_it(EVP_PKEY *x); | 
					
						
							| 
									
										
										
										
											2001-08-04 02:48:35 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_bits(EVP_PKEY *pkey) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | 	if (0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_RSA
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | 	else if (pkey->type == EVP_PKEY_RSA) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 		return(BN_num_bits(pkey->pkey.rsa->n)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | 	else if (pkey->type == EVP_PKEY_DSA) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 		return(BN_num_bits(pkey->pkey.dsa->p)); | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 	else if (pkey->type == EVP_PKEY_ECDSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		BIGNUM *order = BN_new(); | 
					
						
							|  |  |  | 		int ret; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!order) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 			ERR_clear_error(); | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		if (!EC_GROUP_get_order(pkey->pkey.ecdsa->group, order, NULL)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 			ERR_clear_error(); | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		ret = BN_num_bits(order); | 
					
						
							|  |  |  | 		BN_free(order); | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	return(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_size(EVP_PKEY *pkey) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2001-08-04 03:00:43 +08:00
										 |  |  | 	if (pkey == NULL) | 
					
						
							|  |  |  | 		return(0); | 
					
						
							| 
									
										
										
										
											2001-08-04 05:09:21 +08:00
										 |  |  | #ifndef OPENSSL_NO_RSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	if (pkey->type == EVP_PKEY_RSA) | 
					
						
							|  |  |  | 		return(RSA_size(pkey->pkey.rsa)); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 		if (pkey->type == EVP_PKEY_DSA) | 
					
						
							|  |  |  | 		return(DSA_size(pkey->pkey.dsa)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 		if (pkey->type == EVP_PKEY_ECDSA) | 
					
						
							|  |  |  | 		return(ECDSA_size(pkey->pkey.ecdsa)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	return(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	if (pkey->type == EVP_PKEY_DSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2000-11-07 05:12:21 +08:00
										 |  |  | 		int ret=pkey->save_parameters; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (mode >= 0) | 
					
						
							|  |  |  | 			pkey->save_parameters=mode; | 
					
						
							|  |  |  | 		return(ret); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 	if (pkey->type == EVP_PKEY_ECDSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		int ret = pkey->save_parameters; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (mode >= 0) | 
					
						
							|  |  |  | 			pkey->save_parameters = mode; | 
					
						
							|  |  |  | 		return(ret); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	return(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_copy_parameters(EVP_PKEY *to, EVP_PKEY *from) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	if (to->type != from->type) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS,EVP_R_DIFFERENT_KEY_TYPES); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (EVP_PKEY_missing_parameters(from)) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2000-02-04 07:23:24 +08:00
										 |  |  | 		EVPerr(EVP_F_EVP_PKEY_COPY_PARAMETERS,EVP_R_MISSING_PARAMETERS); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 		goto err; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	if (to->type == EVP_PKEY_DSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		BIGNUM *a; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((a=BN_dup(from->pkey.dsa->p)) == NULL) goto err; | 
					
						
							|  |  |  | 		if (to->pkey.dsa->p != NULL) BN_free(to->pkey.dsa->p); | 
					
						
							|  |  |  | 		to->pkey.dsa->p=a; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((a=BN_dup(from->pkey.dsa->q)) == NULL) goto err; | 
					
						
							|  |  |  | 		if (to->pkey.dsa->q != NULL) BN_free(to->pkey.dsa->q); | 
					
						
							|  |  |  | 		to->pkey.dsa->q=a; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if ((a=BN_dup(from->pkey.dsa->g)) == NULL) goto err; | 
					
						
							|  |  |  | 		if (to->pkey.dsa->g != NULL) BN_free(to->pkey.dsa->g); | 
					
						
							|  |  |  | 		to->pkey.dsa->g=a; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 	if (to->type == EVP_PKEY_ECDSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		if (to->pkey.ecdsa->group != NULL) | 
					
						
							|  |  |  | 			EC_GROUP_free(to->pkey.ecdsa->group); | 
					
						
							|  |  |  | 		if ((to->pkey.ecdsa->group = EC_GROUP_new(EC_GROUP_method_of(from->pkey.ecdsa->group))) == NULL) goto err; | 
					
						
							|  |  |  | 		if (!EC_GROUP_copy(to->pkey.ecdsa->group,from->pkey.ecdsa->group)) goto err; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 	return(1); | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  | 	return(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_missing_parameters(EVP_PKEY *pkey) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	if (pkey->type == EVP_PKEY_DSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		DSA *dsa; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		dsa=pkey->pkey.dsa; | 
					
						
							|  |  |  | 		if ((dsa->p == NULL) || (dsa->q == NULL) || (dsa->g == NULL)) | 
					
						
							|  |  |  | 			return(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 	if (pkey->type == EVP_PKEY_ECDSA) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		if (pkey->pkey.ecdsa->group == NULL) | 
					
						
							|  |  |  | 			return(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	return(0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_cmp_parameters(EVP_PKEY *a, EVP_PKEY *b) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 	if ((a->type == EVP_PKEY_DSA) && (b->type == EVP_PKEY_DSA)) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		if (	BN_cmp(a->pkey.dsa->p,b->pkey.dsa->p) || | 
					
						
							|  |  |  | 			BN_cmp(a->pkey.dsa->q,b->pkey.dsa->q) || | 
					
						
							|  |  |  | 			BN_cmp(a->pkey.dsa->g,b->pkey.dsa->g)) | 
					
						
							|  |  |  | 			return(0); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			return(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	return(-1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | EVP_PKEY *EVP_PKEY_new(void) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	EVP_PKEY *ret; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  | 	ret=(EVP_PKEY *)OPENSSL_malloc(sizeof(EVP_PKEY)); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	if (ret == NULL) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		EVPerr(EVP_F_EVP_PKEY_NEW,ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  | 		return(NULL); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	ret->type=EVP_PKEY_NONE; | 
					
						
							|  |  |  | 	ret->references=1; | 
					
						
							|  |  |  | 	ret->pkey.ptr=NULL; | 
					
						
							|  |  |  | 	ret->attributes=NULL; | 
					
						
							|  |  |  | 	ret->save_parameters=1; | 
					
						
							|  |  |  | 	return(ret); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_assign(EVP_PKEY *pkey, int type, char *key) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	if (pkey == NULL) return(0); | 
					
						
							|  |  |  | 	if (pkey->pkey.ptr != NULL) | 
					
						
							|  |  |  | 		EVP_PKEY_free_it(pkey); | 
					
						
							|  |  |  | 	pkey->type=EVP_PKEY_type(type); | 
					
						
							|  |  |  | 	pkey->save_type=type; | 
					
						
							|  |  |  | 	pkey->pkey.ptr=key; | 
					
						
							| 
									
										
										
										
											2000-01-15 02:41:28 +08:00
										 |  |  | 	return(key != NULL); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_RSA
 | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key) | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1999-11-24 02:50:28 +08:00
										 |  |  | 	int ret = EVP_PKEY_assign_RSA(pkey, key); | 
					
						
							| 
									
										
										
										
											2001-08-26 01:28:23 +08:00
										 |  |  | 	if(ret) | 
					
						
							| 
									
										
										
										
											2001-09-03 21:40:07 +08:00
										 |  |  | 		RSA_up_ref(key); | 
					
						
							| 
									
										
										
										
											1999-11-24 02:50:28 +08:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | RSA *EVP_PKEY_get1_RSA(EVP_PKEY *pkey) | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	if(pkey->type != EVP_PKEY_RSA) { | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | 		EVPerr(EVP_F_EVP_PKEY_GET1_RSA, EVP_R_EXPECTING_AN_RSA_KEY); | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-09-03 21:40:07 +08:00
										 |  |  | 	RSA_up_ref(pkey->pkey.rsa); | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 	return pkey->pkey.rsa; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | int EVP_PKEY_set1_DSA(EVP_PKEY *pkey, DSA *key) | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1999-11-24 02:50:28 +08:00
										 |  |  | 	int ret = EVP_PKEY_assign_DSA(pkey, key); | 
					
						
							| 
									
										
										
										
											2001-08-26 01:28:23 +08:00
										 |  |  | 	if(ret) | 
					
						
							| 
									
										
										
										
											2001-09-03 21:40:07 +08:00
										 |  |  | 		DSA_up_ref(key); | 
					
						
							| 
									
										
										
										
											1999-11-24 02:50:28 +08:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | DSA *EVP_PKEY_get1_DSA(EVP_PKEY *pkey) | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	if(pkey->type != EVP_PKEY_DSA) { | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | 		EVPerr(EVP_F_EVP_PKEY_GET1_DSA, EVP_R_EXPECTING_A_DSA_KEY); | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-09-03 21:40:07 +08:00
										 |  |  | 	DSA_up_ref(pkey->pkey.dsa); | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 	return pkey->pkey.dsa; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int EVP_PKEY_set1_ECDSA(EVP_PKEY *pkey, ECDSA *key) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ret = EVP_PKEY_assign_ECDSA(pkey,key); | 
					
						
							|  |  |  | 	if (ret) CRYPTO_add(&key->references, 1,CRYPTO_LOCK_ECDSA); | 
					
						
							|  |  |  | 		return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ECDSA *EVP_PKEY_get1_ECDSA(EVP_PKEY *pkey) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (pkey->type != EVP_PKEY_ECDSA) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		EVPerr(EVP_F_EVP_PKEY_GET1_ECDSA, EVP_R_EXPECTING_A_ECDSA_KEY); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	CRYPTO_add(&pkey->pkey.ecdsa->references, 1, CRYPTO_LOCK_ECDSA); | 
					
						
							|  |  |  | 	return pkey->pkey.ecdsa; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | int EVP_PKEY_set1_DH(EVP_PKEY *pkey, DH *key) | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1999-11-24 02:50:28 +08:00
										 |  |  | 	int ret = EVP_PKEY_assign_DH(pkey, key); | 
					
						
							| 
									
										
										
										
											2001-08-26 01:28:23 +08:00
										 |  |  | 	if(ret) | 
					
						
							| 
									
										
										
										
											2001-09-06 01:02:35 +08:00
										 |  |  | 		DH_up_ref(key); | 
					
						
							| 
									
										
										
										
											1999-11-24 02:50:28 +08:00
										 |  |  | 	return ret; | 
					
						
							| 
									
										
										
										
											1999-11-22 06:28:31 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | DH *EVP_PKEY_get1_DH(EVP_PKEY *pkey) | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	if(pkey->type != EVP_PKEY_DH) { | 
					
						
							| 
									
										
										
										
											2000-02-26 09:55:33 +08:00
										 |  |  | 		EVPerr(EVP_F_EVP_PKEY_GET1_DH, EVP_R_EXPECTING_A_DH_KEY); | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2001-09-06 01:02:35 +08:00
										 |  |  | 	DH_up_ref(pkey->pkey.dh); | 
					
						
							| 
									
										
										
										
											1999-10-25 10:00:09 +08:00
										 |  |  | 	return pkey->pkey.dh; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int EVP_PKEY_type(int type) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	switch (type) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 	case EVP_PKEY_RSA: | 
					
						
							|  |  |  | 	case EVP_PKEY_RSA2: | 
					
						
							|  |  |  | 		return(EVP_PKEY_RSA); | 
					
						
							|  |  |  | 	case EVP_PKEY_DSA: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 	case EVP_PKEY_DSA1: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	case EVP_PKEY_DSA2: | 
					
						
							|  |  |  | 	case EVP_PKEY_DSA3: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 	case EVP_PKEY_DSA4: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 		return(EVP_PKEY_DSA); | 
					
						
							|  |  |  | 	case EVP_PKEY_DH: | 
					
						
							|  |  |  | 		return(EVP_PKEY_DH); | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | 	case EVP_PKEY_ECDSA: | 
					
						
							|  |  |  | 		return(EVP_PKEY_ECDSA); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		return(NID_undef); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | void EVP_PKEY_free(EVP_PKEY *x) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (x == NULL) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	i=CRYPTO_add(&x->references,-1,CRYPTO_LOCK_EVP_PKEY); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | #ifdef REF_PRINT
 | 
					
						
							|  |  |  | 	REF_PRINT("EVP_PKEY",x); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	if (i > 0) return; | 
					
						
							|  |  |  | #ifdef REF_CHECK
 | 
					
						
							|  |  |  | 	if (i < 0) | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		fprintf(stderr,"EVP_PKEY_free, bad reference count\n"); | 
					
						
							|  |  |  | 		abort(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	EVP_PKEY_free_it(x); | 
					
						
							| 
									
										
										
										
											2000-06-02 06:19:21 +08:00
										 |  |  | 	OPENSSL_free(x); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static void EVP_PKEY_free_it(EVP_PKEY *x) | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	switch (x->type) | 
					
						
							|  |  |  | 		{ | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_RSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	case EVP_PKEY_RSA: | 
					
						
							|  |  |  | 	case EVP_PKEY_RSA2: | 
					
						
							|  |  |  | 		RSA_free(x->pkey.rsa); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DSA
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	case EVP_PKEY_DSA: | 
					
						
							|  |  |  | 	case EVP_PKEY_DSA2: | 
					
						
							|  |  |  | 	case EVP_PKEY_DSA3: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 	case EVP_PKEY_DSA4: | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 		DSA_free(x->pkey.dsa); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2002-02-14 02:21:51 +08:00
										 |  |  | #ifndef OPENSSL_NO_ECDSA
 | 
					
						
							|  |  |  | 	case EVP_PKEY_ECDSA: | 
					
						
							|  |  |  | 		ECDSA_free(x->pkey.ecdsa); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2001-02-20 00:06:34 +08:00
										 |  |  | #ifndef OPENSSL_NO_DH
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 	case EVP_PKEY_DH: | 
					
						
							|  |  |  | 		DH_free(x->pkey.dh); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 |