| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  |  * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2018-12-06 20:36:26 +08:00
										 |  |  |  * Licensed under the Apache License 2.0 (the "License").  You may not use | 
					
						
							| 
									
										
										
										
											2016-05-18 02:51:26 +08:00
										 |  |  |  * 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
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <time.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											2015-01-28 01:34:45 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | #include <openssl/self_test.h>
 | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  | #include "prov/providercommon.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  | #include "crypto/dsa.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-28 06:45:40 +08:00
										 |  |  | #include "dsa_local.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifdef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-04-15 19:02:52 +08:00
										 |  |  | # define MIN_STRENGTH 112
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | # define MIN_STRENGTH 80
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | static int dsa_keygen(DSA *dsa, int pairwise_test); | 
					
						
							|  |  |  | static int dsa_keygen_pairwise_test(DSA *dsa, OSSL_CALLBACK *cb, void *cbarg); | 
					
						
							| 
									
										
										
										
											2003-01-15 10:01:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int DSA_generate_key(DSA *dsa) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifndef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  |     if (dsa->meth->dsa_keygen != NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return dsa->meth->dsa_keygen(dsa); | 
					
						
							| 
									
										
										
										
											2020-02-16 11:03:46 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  |     return dsa_keygen(dsa, 0); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2003-01-15 10:01:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												Fix external symbols related to dsa keys
Partial fix for #12964
This adds ossl_ names for the following symbols:
dsa_check_pairwise, dsa_check_params, dsa_check_priv_key, dsa_check_pub_key, dsa_check_pub_key_partial,
dsa_do_sign_int, dsa_ffc_params_fromdata,
dsa_generate_ffc_parameters, dsa_generate_public_key,
dsa_get0_params, dsa_key_fromdata, dsa_new_with_ctx, dsa_pkey_method, dsa_sign_int
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14231)
											
										 
											2021-02-18 14:30:37 +08:00
										 |  |  | int ossl_dsa_generate_public_key(BN_CTX *ctx, const DSA *dsa, | 
					
						
							|  |  |  |                                  const BIGNUM *priv_key, BIGNUM *pub_key) | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2020-02-16 11:03:46 +08:00
										 |  |  |     int ret = 0; | 
					
						
							|  |  |  |     BIGNUM *prk = BN_new(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (prk == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     BN_with_flags(prk, priv_key, BN_FLG_CONSTTIME); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* pub_key = g ^ priv_key mod p */ | 
					
						
							|  |  |  |     if (!BN_mod_exp(pub_key, dsa->params.g, prk, dsa->params.p, ctx)) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     BN_clear_free(prk); | 
					
						
							|  |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | static int dsa_keygen(DSA *dsa, int pairwise_test) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int ok = 0; | 
					
						
							|  |  |  |     BN_CTX *ctx = NULL; | 
					
						
							|  |  |  |     BIGNUM *pub_key = NULL, *priv_key = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-16 11:03:46 +08:00
										 |  |  |     if ((ctx = BN_CTX_new_ex(dsa->libctx)) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (dsa->priv_key == NULL) { | 
					
						
							| 
									
										
										
										
											2015-04-25 04:39:40 +08:00
										 |  |  |         if ((priv_key = BN_secure_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         priv_key = dsa->priv_key; | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-09 11:43:10 +08:00
										 |  |  |     /* Do a partial check for invalid p, q, g */ | 
					
						
							| 
									
										
											  
											
												ffc: add _ossl to exported but internal functions
The functions updated are:
    ffc_generate_private_key, ffc_named_group_from_uid,
    ffc_named_group_to_uid, ffc_params_FIPS186_2_gen_verify,
    ffc_params_FIPS186_2_generate, ffc_params_FIPS186_2_validate,
    ffc_params_FIPS186_4_gen_verify, ffc_params_FIPS186_4_generate,
    ffc_params_FIPS186_4_validate, ffc_params_cleanup, ffc_params_cmp,
    ffc_params_copy, ffc_params_enable_flags, ffc_params_flags_from_name,
    ffc_params_flags_to_name, ffc_params_fromdata,
    ffc_params_get0_pqg, ffc_params_get_validate_params,
    ffc_params_init, ffc_params_print, ffc_params_set0_j,
    ffc_params_set0_pqg, ffc_params_set_flags, ffc_params_set_gindex,
    ffc_params_set_h, ffc_params_set_pcounter, ffc_params_set_seed,
    ffc_params_set_validate_params, ffc_params_simple_validate,
    ffc_params_todata, ffc_params_validate_unverifiable_g, ffc_set_digest,
    ffc_set_group_pqg, ffc_validate_private_key, ffc_validate_public_key
    and ffc_validate_public_key_partial.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13041)
											
										 
											2020-09-30 13:07:24 +08:00
										 |  |  |     if (!ossl_ffc_params_simple_validate(dsa->libctx, &dsa->params, | 
					
						
							| 
									
										
										
										
											2021-02-11 01:44:00 +08:00
										 |  |  |                                          FFC_PARAM_TYPE_DSA, NULL)) | 
					
						
							| 
									
										
										
										
											2020-07-09 11:43:10 +08:00
										 |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-20 09:07:38 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * For FFC FIPS 186-4 keygen | 
					
						
							|  |  |  |      * security strength s = 112, | 
					
						
							|  |  |  |      * Max Private key size N = len(q) | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
											  
											
												ffc: add _ossl to exported but internal functions
The functions updated are:
    ffc_generate_private_key, ffc_named_group_from_uid,
    ffc_named_group_to_uid, ffc_params_FIPS186_2_gen_verify,
    ffc_params_FIPS186_2_generate, ffc_params_FIPS186_2_validate,
    ffc_params_FIPS186_4_gen_verify, ffc_params_FIPS186_4_generate,
    ffc_params_FIPS186_4_validate, ffc_params_cleanup, ffc_params_cmp,
    ffc_params_copy, ffc_params_enable_flags, ffc_params_flags_from_name,
    ffc_params_flags_to_name, ffc_params_fromdata,
    ffc_params_get0_pqg, ffc_params_get_validate_params,
    ffc_params_init, ffc_params_print, ffc_params_set0_j,
    ffc_params_set0_pqg, ffc_params_set_flags, ffc_params_set_gindex,
    ffc_params_set_h, ffc_params_set_pcounter, ffc_params_set_seed,
    ffc_params_set_validate_params, ffc_params_simple_validate,
    ffc_params_todata, ffc_params_validate_unverifiable_g, ffc_set_digest,
    ffc_set_group_pqg, ffc_validate_private_key, ffc_validate_public_key
    and ffc_validate_public_key_partial.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/13041)
											
										 
											2020-09-30 13:07:24 +08:00
										 |  |  |     if (!ossl_ffc_generate_private_key(ctx, &dsa->params, | 
					
						
							|  |  |  |                                        BN_num_bits(dsa->params.q), | 
					
						
							|  |  |  |                                        MIN_STRENGTH, priv_key)) | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (dsa->pub_key == NULL) { | 
					
						
							|  |  |  |         if ((pub_key = BN_new()) == NULL) | 
					
						
							|  |  |  |             goto err; | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         pub_key = dsa->pub_key; | 
					
						
							| 
									
										
										
										
											2020-02-06 20:28:36 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
											
												Fix external symbols related to dsa keys
Partial fix for #12964
This adds ossl_ names for the following symbols:
dsa_check_pairwise, dsa_check_params, dsa_check_priv_key, dsa_check_pub_key, dsa_check_pub_key_partial,
dsa_do_sign_int, dsa_ffc_params_fromdata,
dsa_generate_ffc_parameters, dsa_generate_public_key,
dsa_get0_params, dsa_key_fromdata, dsa_new_with_ctx, dsa_pkey_method, dsa_sign_int
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14231)
											
										 
											2021-02-18 14:30:37 +08:00
										 |  |  |     if (!ossl_dsa_generate_public_key(ctx, dsa, priv_key, pub_key)) | 
					
						
							| 
									
										
										
										
											2020-02-16 11:03:46 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     dsa->priv_key = priv_key; | 
					
						
							|  |  |  |     dsa->pub_key = pub_key; | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #ifdef FIPS_MODULE
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  |     pairwise_test = 1; | 
					
						
							| 
									
										
										
										
											2020-04-14 04:34:56 +08:00
										 |  |  | #endif /* FIPS_MODULE */
 | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ok = 1; | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  |     if (pairwise_test) { | 
					
						
							|  |  |  |         OSSL_CALLBACK *cb = NULL; | 
					
						
							|  |  |  |         void *cbarg = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         OSSL_SELF_TEST_get_callback(dsa->libctx, &cb, &cbarg); | 
					
						
							|  |  |  |         ok = dsa_keygen_pairwise_test(dsa, cb, cbarg); | 
					
						
							|  |  |  |         if (!ok) { | 
					
						
							| 
									
										
										
										
											2020-09-10 12:01:30 +08:00
										 |  |  |             ossl_set_error_state(OSSL_SELF_TEST_TYPE_PCT); | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  |             BN_free(dsa->pub_key); | 
					
						
							|  |  |  |             BN_clear_free(dsa->priv_key); | 
					
						
							| 
									
										
										
										
											2020-07-09 11:43:10 +08:00
										 |  |  |             dsa->pub_key = NULL; | 
					
						
							|  |  |  |             dsa->priv_key = NULL; | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  |             BN_CTX_free(ctx); | 
					
						
							|  |  |  |             return ok; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     dsa->dirty_cnt++; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-05-01 09:37:06 +08:00
										 |  |  |     if (pub_key != dsa->pub_key) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         BN_free(pub_key); | 
					
						
							| 
									
										
										
										
											2015-05-01 09:37:06 +08:00
										 |  |  |     if (priv_key != dsa->priv_key) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         BN_free(priv_key); | 
					
						
							| 
									
										
										
										
											2015-05-01 09:37:06 +08:00
										 |  |  |     BN_CTX_free(ctx); | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-17 22:04:09 +08:00
										 |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-03 12:02:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * FIPS 140-2 IG 9.9 AS09.33 | 
					
						
							|  |  |  |  * Perform a sign/verify operation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int dsa_keygen_pairwise_test(DSA *dsa, OSSL_CALLBACK *cb, void *cbarg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int ret = 0; | 
					
						
							|  |  |  |     unsigned char dgst[16] = {0}; | 
					
						
							|  |  |  |     unsigned int dgst_len = (unsigned int)sizeof(dgst); | 
					
						
							|  |  |  |     DSA_SIG *sig = NULL; | 
					
						
							|  |  |  |     OSSL_SELF_TEST *st = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     st = OSSL_SELF_TEST_new(cb, cbarg); | 
					
						
							|  |  |  |     if (st == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OSSL_SELF_TEST_onbegin(st, OSSL_SELF_TEST_TYPE_PCT, | 
					
						
							|  |  |  |                            OSSL_SELF_TEST_DESC_PCT_DSA); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sig = DSA_do_sign(dgst, (int)dgst_len, dsa); | 
					
						
							|  |  |  |     if (sig == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     OSSL_SELF_TEST_oncorrupt_byte(st, dgst); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (DSA_do_verify(dgst, dgst_len, sig, dsa) != 1) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ret = 1; | 
					
						
							|  |  |  | err: | 
					
						
							|  |  |  |     OSSL_SELF_TEST_onend(st, ret); | 
					
						
							|  |  |  |     OSSL_SELF_TEST_free(st); | 
					
						
							|  |  |  |     DSA_SIG_free(sig); | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } |