| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-01-21 13:57:25 +08:00
										 |  |  |  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-30 05:23:39 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * DSA low level APIs are deprecated for public use, but still ok for | 
					
						
							|  |  |  |  * internal use. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include "internal/deprecated.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | #include <openssl/core_numbers.h>
 | 
					
						
							|  |  |  | #include <openssl/core_names.h>
 | 
					
						
							|  |  |  | #include <openssl/bn.h>
 | 
					
						
							|  |  |  | #include <openssl/params.h>
 | 
					
						
							| 
									
										
										
										
											2019-10-04 21:20:48 +08:00
										 |  |  | #include "prov/implementations.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  | #include "prov/providercommon.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-12 09:32:12 +08:00
										 |  |  | #include "prov/provider_ctx.h"
 | 
					
						
							|  |  |  | #include "crypto/dsa.h"
 | 
					
						
							| 
									
										
										
										
											2020-01-21 13:57:25 +08:00
										 |  |  | #include "internal/param_build.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static OSSL_OP_keymgmt_new_fn dsa_newdata; | 
					
						
							|  |  |  | static OSSL_OP_keymgmt_free_fn dsa_freedata; | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | static OSSL_OP_keymgmt_get_params_fn dsa_get_params; | 
					
						
							|  |  |  | static OSSL_OP_keymgmt_gettable_params_fn dsa_gettable_params; | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static OSSL_OP_keymgmt_has_fn dsa_has; | 
					
						
							| 
									
										
										
										
											2020-02-06 16:53:15 +08:00
										 |  |  | static OSSL_OP_keymgmt_match_fn dsa_match; | 
					
						
							| 
									
										
										
										
											2020-01-21 13:57:25 +08:00
										 |  |  | static OSSL_OP_keymgmt_validate_fn dsa_validate; | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static OSSL_OP_keymgmt_import_fn dsa_import; | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | static OSSL_OP_keymgmt_import_types_fn dsa_import_types; | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static OSSL_OP_keymgmt_export_fn dsa_export; | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | static OSSL_OP_keymgmt_export_types_fn dsa_export_types; | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-13 15:54:47 +08:00
										 |  |  | #define DSA_DEFAULT_MD "SHA256"
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | #define DSA_POSSIBLE_SELECTIONS                 \
 | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  |     (OSSL_KEYMGMT_SELECT_KEYPAIR | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) | 
					
						
							| 
									
										
										
										
											2020-01-13 15:54:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  | static int params_to_domparams(DSA *dsa, const OSSL_PARAM params[]) | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  |     const OSSL_PARAM *param_p, *param_q, *param_g; | 
					
						
							|  |  |  |     BIGNUM *p = NULL, *q = NULL, *g = NULL; | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (dsa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     param_p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_P); | 
					
						
							|  |  |  |     param_q = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_Q); | 
					
						
							|  |  |  |     param_g = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_FFC_G); | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((param_p != NULL && !OSSL_PARAM_get_BN(param_p, &p)) | 
					
						
							|  |  |  |         || (param_q != NULL && !OSSL_PARAM_get_BN(param_q, &q)) | 
					
						
							|  |  |  |         || (param_g != NULL && !OSSL_PARAM_get_BN(param_g, &g))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!DSA_set0_pqg(dsa, p, q, g)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     BN_free(p); | 
					
						
							|  |  |  |     BN_free(q); | 
					
						
							|  |  |  |     BN_free(g); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  | static int domparams_to_params(DSA *dsa, OSSL_PARAM_BLD *tmpl) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const BIGNUM *dsa_p = NULL, *dsa_q = NULL, *dsa_g = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dsa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DSA_get0_pqg(dsa, &dsa_p, &dsa_q, &dsa_g); | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     if (dsa_p != NULL | 
					
						
							|  |  |  |         && !ossl_param_bld_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_P, dsa_p)) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     if (dsa_q != NULL | 
					
						
							|  |  |  |         && !ossl_param_bld_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_Q, dsa_q)) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     if (dsa_g != NULL | 
					
						
							|  |  |  |         && !ossl_param_bld_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_G, dsa_g)) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  | static int params_to_key(DSA *dsa, const OSSL_PARAM params[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const OSSL_PARAM *param_priv_key, *param_pub_key; | 
					
						
							|  |  |  |     BIGNUM *priv_key = NULL, *pub_key = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dsa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!params_to_domparams(dsa, params)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  |     param_priv_key = | 
					
						
							| 
									
										
										
										
											2020-01-28 00:57:03 +08:00
										 |  |  |         OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PRIV_KEY); | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  |     param_pub_key = | 
					
						
							| 
									
										
										
										
											2020-01-28 00:57:03 +08:00
										 |  |  |         OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_PUB_KEY); | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * DSA documentation says that a public key must be present if a private key | 
					
						
							|  |  |  |      * is. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (param_priv_key != NULL && param_pub_key == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  |     if ((param_priv_key != NULL | 
					
						
							|  |  |  |          && !OSSL_PARAM_get_BN(param_priv_key, &priv_key)) | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  |         || (param_pub_key != NULL | 
					
						
							|  |  |  |             && !OSSL_PARAM_get_BN(param_pub_key, &pub_key))) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (pub_key != NULL && !DSA_set0_key(dsa, pub_key, priv_key)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2019-12-15 06:29:34 +08:00
										 |  |  |     BN_clear_free(priv_key); | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  |     BN_free(pub_key); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  | static int key_to_params(DSA *dsa, OSSL_PARAM_BLD *tmpl) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const BIGNUM *priv_key = NULL, *pub_key = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dsa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     if (!domparams_to_params(dsa, tmpl)) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DSA_get0_key(dsa, &pub_key, &priv_key); | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     if (priv_key != NULL | 
					
						
							| 
									
										
										
										
											2020-01-28 00:57:03 +08:00
										 |  |  |         && !ossl_param_bld_push_BN(tmpl, OSSL_PKEY_PARAM_PRIV_KEY, priv_key)) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     if (pub_key != NULL | 
					
						
							| 
									
										
										
										
											2020-01-28 00:57:03 +08:00
										 |  |  |         && !ossl_param_bld_push_BN(tmpl, OSSL_PKEY_PARAM_PUB_KEY, pub_key)) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static void *dsa_newdata(void *provctx) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-16 11:03:46 +08:00
										 |  |  |     return dsa_new_with_ctx(PROV_LIBRARY_CONTEXT_OF(provctx)); | 
					
						
							| 
									
										
										
										
											2019-10-14 16:11:40 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static void dsa_freedata(void *keydata) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     DSA_free(keydata); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static int dsa_has(void *keydata, int selection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DSA *dsa = keydata; | 
					
						
							|  |  |  |     int ok = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-21 13:03:39 +08:00
										 |  |  |     if (dsa != NULL) { | 
					
						
							|  |  |  |         if ((selection & DSA_POSSIBLE_SELECTIONS) != 0) | 
					
						
							|  |  |  |             ok = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) | 
					
						
							|  |  |  |             ok = ok && (DSA_get0_pub_key(dsa) != NULL); | 
					
						
							|  |  |  |         if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) | 
					
						
							|  |  |  |             ok = ok && (DSA_get0_priv_key(dsa) != NULL); | 
					
						
							|  |  |  |         if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) | 
					
						
							|  |  |  |             ok = ok && (DSA_get0_p(dsa) != NULL && DSA_get0_g(dsa) != NULL); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-06 16:53:15 +08:00
										 |  |  | static int dsa_match(const void *keydata1, const void *keydata2, int selection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const DSA *dsa1 = keydata1; | 
					
						
							|  |  |  |     const DSA *dsa2 = keydata2; | 
					
						
							|  |  |  |     int ok = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) | 
					
						
							|  |  |  |         ok = ok | 
					
						
							|  |  |  |             && BN_cmp(DSA_get0_pub_key(dsa1), DSA_get0_pub_key(dsa2)) == 0; | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) | 
					
						
							|  |  |  |         ok = ok | 
					
						
							|  |  |  |             && BN_cmp(DSA_get0_priv_key(dsa1), DSA_get0_priv_key(dsa2)) == 0; | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) { | 
					
						
							|  |  |  |         FFC_PARAMS *dsaparams1 = dsa_get0_params((DSA *)dsa1); | 
					
						
							|  |  |  |         FFC_PARAMS *dsaparams2 = dsa_get0_params((DSA *)dsa2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ok = ok && ffc_params_cmp(dsaparams1, dsaparams2, 1); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return ok; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static int dsa_import(void *keydata, int selection, const OSSL_PARAM params[]) | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     DSA *dsa = keydata; | 
					
						
							|  |  |  |     int ok = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dsa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & DSA_POSSIBLE_SELECTIONS) != 0) | 
					
						
							|  |  |  |         ok = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0) | 
					
						
							|  |  |  |         ok = ok && params_to_domparams(dsa, params); | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) | 
					
						
							|  |  |  |         ok = ok && params_to_key(dsa, params); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static int dsa_export(void *keydata, int selection, OSSL_CALLBACK *param_cb, | 
					
						
							|  |  |  |                       void *cbarg) | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     DSA *dsa = keydata; | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     OSSL_PARAM_BLD tmpl; | 
					
						
							|  |  |  |     OSSL_PARAM *params = NULL; | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     int ok = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (dsa == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ossl_param_bld_init(&tmpl); | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0) | 
					
						
							|  |  |  |         ok = ok && domparams_to_params(dsa, &tmpl); | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) | 
					
						
							|  |  |  |         ok = ok && key_to_params(dsa, &tmpl); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!ok | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |         || (params = ossl_param_bld_to_param(&tmpl)) == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     ok = param_cb(params, cbarg); | 
					
						
							| 
									
										
										
										
											2019-11-08 22:24:42 +08:00
										 |  |  |     ossl_param_bld_free(params); | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2019-10-14 16:37:08 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | /* IMEXPORT = IMPORT + EXPORT */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # define DSA_IMEXPORTABLE_PARAMETERS                    \
 | 
					
						
							|  |  |  |     OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_P, NULL, 0),      \ | 
					
						
							|  |  |  |     OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_Q, NULL, 0),      \ | 
					
						
							|  |  |  |     OSSL_PARAM_BN(OSSL_PKEY_PARAM_FFC_G, NULL, 0) | 
					
						
							|  |  |  | # define DSA_IMEXPORTABLE_PUBLIC_KEY                    \
 | 
					
						
							| 
									
										
										
										
											2020-01-28 00:57:03 +08:00
										 |  |  |     OSSL_PARAM_BN(OSSL_PKEY_PARAM_PUB_KEY, NULL, 0) | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | # define DSA_IMEXPORTABLE_PRIVATE_KEY                   \
 | 
					
						
							| 
									
										
										
										
											2020-01-28 00:57:03 +08:00
										 |  |  |     OSSL_PARAM_BN(OSSL_PKEY_PARAM_PRIV_KEY, NULL, 0) | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | static const OSSL_PARAM dsa_all_types[] = { | 
					
						
							|  |  |  |     DSA_IMEXPORTABLE_PARAMETERS, | 
					
						
							|  |  |  |     DSA_IMEXPORTABLE_PUBLIC_KEY, | 
					
						
							|  |  |  |     DSA_IMEXPORTABLE_PRIVATE_KEY, | 
					
						
							|  |  |  |     OSSL_PARAM_END | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | static const OSSL_PARAM dsa_parameter_types[] = { | 
					
						
							|  |  |  |     DSA_IMEXPORTABLE_PARAMETERS, | 
					
						
							|  |  |  |     OSSL_PARAM_END | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | static const OSSL_PARAM dsa_key_types[] = { | 
					
						
							|  |  |  |     DSA_IMEXPORTABLE_PUBLIC_KEY, | 
					
						
							|  |  |  |     DSA_IMEXPORTABLE_PRIVATE_KEY, | 
					
						
							|  |  |  |     OSSL_PARAM_END | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | static const OSSL_PARAM *dsa_types[] = { | 
					
						
							|  |  |  |     NULL,                        /* Index 0 = none of them */ | 
					
						
							|  |  |  |     dsa_parameter_types,          /* Index 1 = parameter types */ | 
					
						
							|  |  |  |     dsa_key_types,                /* Index 2 = key types */ | 
					
						
							|  |  |  |     dsa_all_types                 /* Index 3 = 1 + 2 */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OSSL_PARAM *dsa_imexport_types(int selection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int type_select = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_ALL_PARAMETERS) != 0) | 
					
						
							|  |  |  |         type_select += 1; | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0) | 
					
						
							|  |  |  |         type_select += 2; | 
					
						
							|  |  |  |     return dsa_types[type_select]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OSSL_PARAM *dsa_import_types(int selection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return dsa_imexport_types(selection); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OSSL_PARAM *dsa_export_types(int selection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return dsa_imexport_types(selection); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  | static ossl_inline int dsa_get_params(void *key, OSSL_PARAM params[]) | 
					
						
							| 
									
										
										
										
											2020-01-08 10:49:08 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     DSA *dsa = key; | 
					
						
							|  |  |  |     OSSL_PARAM *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_BITS)) != NULL | 
					
						
							|  |  |  |         && !OSSL_PARAM_set_int(p, DSA_bits(dsa))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_SECURITY_BITS)) != NULL | 
					
						
							|  |  |  |         && !OSSL_PARAM_set_int(p, DSA_security_bits(dsa))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_MAX_SIZE)) != NULL | 
					
						
							|  |  |  |         && !OSSL_PARAM_set_int(p, DSA_size(dsa))) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-01-13 15:54:47 +08:00
										 |  |  |     if ((p = OSSL_PARAM_locate(params, OSSL_PKEY_PARAM_DEFAULT_DIGEST)) != NULL | 
					
						
							|  |  |  |         && !OSSL_PARAM_set_utf8_string(p, DSA_DEFAULT_MD)) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2020-01-08 10:49:08 +08:00
										 |  |  |     return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  | static const OSSL_PARAM dsa_params[] = { | 
					
						
							|  |  |  |     OSSL_PARAM_int(OSSL_PKEY_PARAM_BITS, NULL), | 
					
						
							|  |  |  |     OSSL_PARAM_int(OSSL_PKEY_PARAM_SECURITY_BITS, NULL), | 
					
						
							|  |  |  |     OSSL_PARAM_int(OSSL_PKEY_PARAM_MAX_SIZE, NULL), | 
					
						
							|  |  |  |     OSSL_PARAM_utf8_string(OSSL_PKEY_PARAM_DEFAULT_DIGEST, NULL, 0), | 
					
						
							|  |  |  |     OSSL_PARAM_END | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const OSSL_PARAM *dsa_gettable_params(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return dsa_params; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 13:57:25 +08:00
										 |  |  | static int dsa_validate_domparams(DSA *dsa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return dsa_check_params(dsa, &status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dsa_validate_public(DSA *dsa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							|  |  |  |     const BIGNUM *pub_key = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DSA_get0_key(dsa, &pub_key, NULL); | 
					
						
							|  |  |  |     return dsa_check_pub_key(dsa, pub_key, &status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dsa_validate_private(DSA *dsa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int status = 0; | 
					
						
							|  |  |  |     const BIGNUM *priv_key = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DSA_get0_key(dsa, NULL, &priv_key); | 
					
						
							|  |  |  |     return dsa_check_priv_key(dsa, priv_key, &status); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int dsa_validate(void *keydata, int selection) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     DSA *dsa = keydata; | 
					
						
							|  |  |  |     int ok = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & DSA_POSSIBLE_SELECTIONS) != 0) | 
					
						
							|  |  |  |         ok = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS) != 0) | 
					
						
							|  |  |  |         ok = ok && dsa_validate_domparams(dsa); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_PUBLIC_KEY) != 0) | 
					
						
							|  |  |  |         ok = ok && dsa_validate_public(dsa); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_PRIVATE_KEY) != 0) | 
					
						
							|  |  |  |         ok = ok && dsa_validate_private(dsa); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* If the whole key is selected, we do a pairwise validation */ | 
					
						
							|  |  |  |     if ((selection & OSSL_KEYMGMT_SELECT_KEYPAIR) | 
					
						
							|  |  |  |         == OSSL_KEYMGMT_SELECT_KEYPAIR) | 
					
						
							|  |  |  |         ok = ok && dsa_check_pairwise(dsa); | 
					
						
							|  |  |  |     return ok; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  | const OSSL_DISPATCH dsa_keymgmt_functions[] = { | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_NEW, (void (*)(void))dsa_newdata }, | 
					
						
							|  |  |  |     { OSSL_FUNC_KEYMGMT_FREE, (void (*)(void))dsa_freedata }, | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_GET_PARAMS, (void (*) (void))dsa_get_params }, | 
					
						
							|  |  |  |     { OSSL_FUNC_KEYMGMT_GETTABLE_PARAMS, (void (*) (void))dsa_gettable_params }, | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_HAS, (void (*)(void))dsa_has }, | 
					
						
							| 
									
										
										
										
											2020-02-06 16:53:15 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_MATCH, (void (*)(void))dsa_match }, | 
					
						
							| 
									
										
										
										
											2020-01-21 13:57:25 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_VALIDATE, (void (*)(void))dsa_validate }, | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_IMPORT, (void (*)(void))dsa_import }, | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_IMPORT_TYPES, (void (*)(void))dsa_import_types }, | 
					
						
							| 
									
										
										
										
											2020-02-03 19:00:53 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_EXPORT, (void (*)(void))dsa_export }, | 
					
						
							| 
									
										
										
										
											2020-02-05 00:49:28 +08:00
										 |  |  |     { OSSL_FUNC_KEYMGMT_EXPORT_TYPES, (void (*)(void))dsa_export_types }, | 
					
						
							| 
									
										
										
										
											2019-08-30 20:33:37 +08:00
										 |  |  |     { 0, NULL } | 
					
						
							|  |  |  | }; |