]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/dsa/dsa_gen.c
2148a1a487c46fdb0d6e93da586662d5e3f9db4c
[thirdparty/openssl.git] / crypto / dsa / dsa_gen.c
1 /*
2 * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10 /*
11 * DSA low level APIs are deprecated for public use, but still ok for
12 * internal use.
13 */
14 #include "internal/deprecated.h"
15
16 #include <openssl/opensslconf.h>
17 #include <stdio.h>
18 #include "internal/cryptlib.h"
19 #include <openssl/evp.h>
20 #include <openssl/bn.h>
21 #include <openssl/rand.h>
22 #include <openssl/sha.h>
23 #include "crypto/dsa.h"
24 #include "dsa_local.h"
25
26 int dsa_generate_ffc_parameters(DSA *dsa, int type,
27 int pbits, int qbits, int gindex,
28 BN_GENCB *cb)
29 {
30 int ret = 0, res;
31
32 if (qbits <= 0) {
33 const EVP_MD *evpmd = pbits >= 2048 ? EVP_sha256() : EVP_sha1();
34
35 qbits = EVP_MD_size(evpmd) * 8;
36 }
37 dsa->params.gindex = gindex;
38 #ifndef FIPS_MODE
39 if (type == DSA_PARAMGEN_TYPE_FIPS_186_2)
40 ret = ffc_params_FIPS186_2_generate(dsa->libctx, &dsa->params,
41 FFC_PARAM_TYPE_DSA,
42 pbits, qbits, NULL, &res, cb);
43 else
44 #endif
45 ret = ffc_params_FIPS186_4_generate(dsa->libctx, &dsa->params,
46 FFC_PARAM_TYPE_DSA,
47 pbits, qbits, NULL, &res, cb);
48 if (ret > 0)
49 dsa->dirty_cnt++;
50 return ret;
51 }
52
53 int DSA_generate_parameters_ex(DSA *dsa, int bits,
54 const unsigned char *seed_in, int seed_len,
55 int *counter_ret, unsigned long *h_ret,
56 BN_GENCB *cb)
57 {
58 #ifndef FIPS_MODE
59 if (dsa->meth->dsa_paramgen)
60 return dsa->meth->dsa_paramgen(dsa, bits, seed_in, seed_len,
61 counter_ret, h_ret, cb);
62 #endif
63 if (seed_in != NULL
64 && !ffc_params_set_validate_params(&dsa->params, seed_in, seed_len, -1))
65 return 0;
66
67 #ifndef FIPS_MODE
68 /* The old code used FIPS 186-2 DSA Parameter generation */
69 if (bits <= 1024 && seed_len == 20) {
70 if (!dsa_generate_ffc_parameters(dsa, DSA_PARAMGEN_TYPE_FIPS_186_2,
71 bits, 160, -1, cb))
72 return 0;
73 } else
74 #endif
75 {
76 if (!dsa_generate_ffc_parameters(dsa, DSA_PARAMGEN_TYPE_FIPS_186_4,
77 bits, -1, -1, cb))
78 return 0;
79 }
80
81 if (counter_ret != NULL)
82 *counter_ret = dsa->params.pcounter;
83 if (h_ret != NULL)
84 *h_ret = dsa->params.h;
85 return 1;
86 }