update libressl to 2.8.2
[unleashed.git] / lib / libcrypto / dsa / dsa_lib.c
blobd5fdd6e78e4d9d2f080ed2d0b8765fb5aca906e0
1 /* $OpenBSD: dsa_lib.c,v 1.29 2018/04/14 07:09:21 tb Exp $ */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
59 /* Original version from Steven Schoch <schoch@sheba.arc.nasa.gov> */
61 #include <stdio.h>
63 #include <openssl/opensslconf.h>
65 #include <openssl/asn1.h>
66 #include <openssl/bn.h>
67 #include <openssl/dsa.h>
68 #include <openssl/err.h>
70 #ifndef OPENSSL_NO_DH
71 #include <openssl/dh.h>
72 #endif
73 #ifndef OPENSSL_NO_ENGINE
74 #include <openssl/engine.h>
75 #endif
77 static const DSA_METHOD *default_DSA_method = NULL;
79 void
80 DSA_set_default_method(const DSA_METHOD *meth)
82 default_DSA_method = meth;
85 const DSA_METHOD *
86 DSA_get_default_method(void)
88 if (!default_DSA_method)
89 default_DSA_method = DSA_OpenSSL();
90 return default_DSA_method;
93 DSA *
94 DSA_new(void)
96 return DSA_new_method(NULL);
99 int
100 DSA_set_method(DSA *dsa, const DSA_METHOD *meth)
103 * NB: The caller is specifically setting a method, so it's not up to us
104 * to deal with which ENGINE it comes from.
106 const DSA_METHOD *mtmp;
107 mtmp = dsa->meth;
108 if (mtmp->finish)
109 mtmp->finish(dsa);
110 #ifndef OPENSSL_NO_ENGINE
111 ENGINE_finish(dsa->engine);
112 dsa->engine = NULL;
113 #endif
114 dsa->meth = meth;
115 if (meth->init)
116 meth->init(dsa);
117 return 1;
120 DSA *
121 DSA_new_method(ENGINE *engine)
123 DSA *ret;
125 ret = malloc(sizeof(DSA));
126 if (ret == NULL) {
127 DSAerror(ERR_R_MALLOC_FAILURE);
128 return NULL;
130 ret->meth = DSA_get_default_method();
131 #ifndef OPENSSL_NO_ENGINE
132 if (engine) {
133 if (!ENGINE_init(engine)) {
134 DSAerror(ERR_R_ENGINE_LIB);
135 free(ret);
136 return NULL;
138 ret->engine = engine;
139 } else
140 ret->engine = ENGINE_get_default_DSA();
141 if (ret->engine) {
142 ret->meth = ENGINE_get_DSA(ret->engine);
143 if (ret->meth == NULL) {
144 DSAerror(ERR_R_ENGINE_LIB);
145 ENGINE_finish(ret->engine);
146 free(ret);
147 return NULL;
150 #endif
152 ret->pad = 0;
153 ret->version = 0;
154 ret->write_params = 1;
155 ret->p = NULL;
156 ret->q = NULL;
157 ret->g = NULL;
159 ret->pub_key = NULL;
160 ret->priv_key = NULL;
162 ret->kinv = NULL;
163 ret->r = NULL;
164 ret->method_mont_p = NULL;
166 ret->references = 1;
167 ret->flags = ret->meth->flags & ~DSA_FLAG_NON_FIPS_ALLOW;
168 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_DSA, ret, &ret->ex_data);
169 if (ret->meth->init != NULL && !ret->meth->init(ret)) {
170 #ifndef OPENSSL_NO_ENGINE
171 ENGINE_finish(ret->engine);
172 #endif
173 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_DSA, ret, &ret->ex_data);
174 free(ret);
175 ret = NULL;
178 return ret;
181 void
182 DSA_free(DSA *r)
184 int i;
186 if (r == NULL)
187 return;
189 i = CRYPTO_add(&r->references, -1, CRYPTO_LOCK_DSA);
190 if (i > 0)
191 return;
193 if (r->meth->finish)
194 r->meth->finish(r);
195 #ifndef OPENSSL_NO_ENGINE
196 ENGINE_finish(r->engine);
197 #endif
199 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_DSA, r, &r->ex_data);
201 BN_clear_free(r->p);
202 BN_clear_free(r->q);
203 BN_clear_free(r->g);
204 BN_clear_free(r->pub_key);
205 BN_clear_free(r->priv_key);
206 BN_clear_free(r->kinv);
207 BN_clear_free(r->r);
208 free(r);
212 DSA_up_ref(DSA *r)
214 int i = CRYPTO_add(&r->references, 1, CRYPTO_LOCK_DSA);
215 return i > 1 ? 1 : 0;
219 DSA_size(const DSA *r)
221 int ret, i;
222 ASN1_INTEGER bs;
223 unsigned char buf[4]; /* 4 bytes looks really small.
224 However, i2d_ASN1_INTEGER() will not look
225 beyond the first byte, as long as the second
226 parameter is NULL. */
228 i = BN_num_bits(r->q);
229 bs.length = (i + 7) / 8;
230 bs.data = buf;
231 bs.type = V_ASN1_INTEGER;
232 /* If the top bit is set the asn1 encoding is 1 larger. */
233 buf[0] = 0xff;
235 i = i2d_ASN1_INTEGER(&bs, NULL);
236 i += i; /* r and s */
237 ret = ASN1_object_size(1, i, V_ASN1_SEQUENCE);
238 return ret;
242 DSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
243 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
245 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_DSA, argl, argp,
246 new_func, dup_func, free_func);
250 DSA_set_ex_data(DSA *d, int idx, void *arg)
252 return CRYPTO_set_ex_data(&d->ex_data, idx, arg);
255 void *
256 DSA_get_ex_data(DSA *d, int idx)
258 return CRYPTO_get_ex_data(&d->ex_data, idx);
261 #ifndef OPENSSL_NO_DH
262 DH *
263 DSA_dup_DH(const DSA *r)
266 * DSA has p, q, g, optional pub_key, optional priv_key.
267 * DH has p, optional length, g, optional pub_key, optional priv_key,
268 * optional q.
270 DH *ret = NULL;
272 if (r == NULL)
273 goto err;
274 ret = DH_new();
275 if (ret == NULL)
276 goto err;
277 if (r->p != NULL)
278 if ((ret->p = BN_dup(r->p)) == NULL)
279 goto err;
280 if (r->q != NULL) {
281 ret->length = BN_num_bits(r->q);
282 if ((ret->q = BN_dup(r->q)) == NULL)
283 goto err;
285 if (r->g != NULL)
286 if ((ret->g = BN_dup(r->g)) == NULL)
287 goto err;
288 if (r->pub_key != NULL)
289 if ((ret->pub_key = BN_dup(r->pub_key)) == NULL)
290 goto err;
291 if (r->priv_key != NULL)
292 if ((ret->priv_key = BN_dup(r->priv_key)) == NULL)
293 goto err;
295 return ret;
297 err:
298 DH_free(ret);
299 return NULL;
301 #endif
303 void
304 DSA_get0_pqg(const DSA *d, const BIGNUM **p, const BIGNUM **q, const BIGNUM **g)
306 if (p != NULL)
307 *p = d->p;
308 if (q != NULL)
309 *q = d->q;
310 if (g != NULL)
311 *g = d->g;
315 DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g)
317 if ((d->p == NULL && p == NULL) || (d->q == NULL && q == NULL) ||
318 (d->g == NULL && g == NULL))
319 return 0;
321 if (p != NULL) {
322 BN_free(d->p);
323 d->p = p;
325 if (q != NULL) {
326 BN_free(d->q);
327 d->q = q;
329 if (g != NULL) {
330 BN_free(d->g);
331 d->g = g;
334 return 1;
337 void
338 DSA_get0_key(const DSA *d, const BIGNUM **pub_key, const BIGNUM **priv_key)
340 if (pub_key != NULL)
341 *pub_key = d->pub_key;
342 if (priv_key != NULL)
343 *priv_key = d->priv_key;
347 DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key)
349 if (d->pub_key == NULL && pub_key == NULL)
350 return 0;
352 if (pub_key != NULL) {
353 BN_free(d->pub_key);
354 d->pub_key = pub_key;
356 if (priv_key != NULL) {
357 BN_free(d->priv_key);
358 d->priv_key = priv_key;
361 return 1;
364 void
365 DSA_clear_flags(DSA *d, int flags)
367 d->flags &= ~flags;
371 DSA_test_flags(const DSA *d, int flags)
373 return d->flags & flags;
376 void
377 DSA_set_flags(DSA *d, int flags)
379 d->flags |= flags;
382 ENGINE *
383 DSA_get0_engine(DSA *d)
385 return d->engine;