blob: bed93c5d5b5ec60208d5fcbf10496ceeb8730ef3 [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.]
56 *
57 * The DSS routines are based on patches supplied by
58 * Steven Schoch <schoch@sheba.arc.nasa.gov>. */
59
60#ifndef OPENSSL_HEADER_DSA_H
61#define OPENSSL_HEADER_DSA_H
62
63#include <openssl/base.h>
64
65#include <openssl/engine.h>
66#include <openssl/ex_data.h>
Adam Langleye9ada862015-05-11 17:20:37 -070067#include <openssl/thread.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080068
69#if defined(__cplusplus)
70extern "C" {
71#endif
72
73
Robert Sloan8f860b12017-08-28 07:37:06 -070074// DSA contains functions for signing and verifying with the Digital Signature
75// Algorithm.
Adam Vartanianbfcf3a72018-08-10 14:55:24 +010076//
77// This module is deprecated and retained for legacy reasons only. It is not
78// considered a priority for performance or hardening work. Do not use it in
79// new code. Use Ed25519, ECDSA with P-256, or RSA instead.
Adam Langleyd9e397b2015-01-22 14:27:53 -080080
81
Robert Sloan8f860b12017-08-28 07:37:06 -070082// Allocation and destruction.
Adam Langleyd9e397b2015-01-22 14:27:53 -080083
Robert Sloan8f860b12017-08-28 07:37:06 -070084// DSA_new returns a new, empty DSA object or NULL on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -080085OPENSSL_EXPORT DSA *DSA_new(void);
86
Robert Sloan8f860b12017-08-28 07:37:06 -070087// DSA_free decrements the reference count of |dsa| and frees it if the
88// reference count drops to zero.
Adam Langleyd9e397b2015-01-22 14:27:53 -080089OPENSSL_EXPORT void DSA_free(DSA *dsa);
90
Robert Sloan8f860b12017-08-28 07:37:06 -070091// DSA_up_ref increments the reference count of |dsa| and returns one.
Adam Langleyd9e397b2015-01-22 14:27:53 -080092OPENSSL_EXPORT int DSA_up_ref(DSA *dsa);
93
94
Robert Sloan8f860b12017-08-28 07:37:06 -070095// Properties.
David Benjaminc895d6b2016-08-11 13:26:41 -040096
Robert Sloan8f860b12017-08-28 07:37:06 -070097// DSA_get0_key sets |*out_pub_key| and |*out_priv_key|, if non-NULL, to |dsa|'s
98// public and private key, respectively. If |dsa| is a public key, the private
99// key will be set to NULL.
David Benjaminc895d6b2016-08-11 13:26:41 -0400100OPENSSL_EXPORT void DSA_get0_key(const DSA *dsa, const BIGNUM **out_pub_key,
101 const BIGNUM **out_priv_key);
102
Robert Sloan8f860b12017-08-28 07:37:06 -0700103// DSA_get0_pqg sets |*out_p|, |*out_q|, and |*out_g|, if non-NULL, to |dsa|'s
104// p, q, and g parameters, respectively.
David Benjaminc895d6b2016-08-11 13:26:41 -0400105OPENSSL_EXPORT void DSA_get0_pqg(const DSA *dsa, const BIGNUM **out_p,
106 const BIGNUM **out_q, const BIGNUM **out_g);
107
Robert Sloan4562e9d2017-10-02 10:26:51 -0700108// DSA_set0_key sets |dsa|'s public and private key to |pub_key| and |priv_key|,
109// respectively, if non-NULL. On success, it takes ownership of each argument
110// and returns one. Otherwise, it returns zero.
111//
112// |priv_key| may be NULL, but |pub_key| must either be non-NULL or already
113// configured on |dsa|.
114OPENSSL_EXPORT int DSA_set0_key(DSA *dsa, BIGNUM *pub_key, BIGNUM *priv_key);
115
116// DSA_set0_pqg sets |dsa|'s parameters to |p|, |q|, and |g|, if non-NULL, and
117// takes ownership of them. On success, it takes ownership of each argument and
118// returns one. Otherwise, it returns zero.
119//
120// Each argument must either be non-NULL or already configured on |dsa|.
121OPENSSL_EXPORT int DSA_set0_pqg(DSA *dsa, BIGNUM *p, BIGNUM *q, BIGNUM *g);
122
David Benjaminc895d6b2016-08-11 13:26:41 -0400123
Robert Sloan8f860b12017-08-28 07:37:06 -0700124// Parameter generation.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800125
Robert Sloan8f860b12017-08-28 07:37:06 -0700126// DSA_generate_parameters_ex generates a set of DSA parameters by following
127// the procedure given in FIPS 186-4, appendix A.
128// (http://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-4.pdf)
129//
130// The larger prime will have a length of |bits| (e.g. 2048). The |seed| value
131// allows others to generate and verify the same parameters and should be
132// random input which is kept for reference. If |out_counter| or |out_h| are
133// not NULL then the counter and h value used in the generation are written to
134// them.
135//
136// The |cb| argument is passed to |BN_generate_prime_ex| and is thus called
137// during the generation process in order to indicate progress. See the
138// comments for that function for details. In addition to the calls made by
139// |BN_generate_prime_ex|, |DSA_generate_parameters_ex| will call it with
140// |event| equal to 2 and 3 at different stages of the process.
141//
142// It returns one on success and zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800143OPENSSL_EXPORT int DSA_generate_parameters_ex(DSA *dsa, unsigned bits,
144 const uint8_t *seed,
145 size_t seed_len, int *out_counter,
146 unsigned long *out_h,
147 BN_GENCB *cb);
148
Robert Sloan8f860b12017-08-28 07:37:06 -0700149// DSAparams_dup returns a freshly allocated |DSA| that contains a copy of the
150// parameters from |dsa|. It returns NULL on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800151OPENSSL_EXPORT DSA *DSAparams_dup(const DSA *dsa);
152
153
Robert Sloan8f860b12017-08-28 07:37:06 -0700154// Key generation.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800155
Robert Sloan8f860b12017-08-28 07:37:06 -0700156// DSA_generate_key generates a public/private key pair in |dsa|, which must
157// already have parameters setup. It returns one on success and zero on
158// error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800159OPENSSL_EXPORT int DSA_generate_key(DSA *dsa);
160
161
Robert Sloan8f860b12017-08-28 07:37:06 -0700162// Signatures.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800163
Robert Sloan8f860b12017-08-28 07:37:06 -0700164// DSA_SIG_st (aka |DSA_SIG|) contains a DSA signature as a pair of integers.
David Benjaminc895d6b2016-08-11 13:26:41 -0400165struct DSA_SIG_st {
Adam Langleyd9e397b2015-01-22 14:27:53 -0800166 BIGNUM *r, *s;
David Benjaminc895d6b2016-08-11 13:26:41 -0400167};
Adam Langleyd9e397b2015-01-22 14:27:53 -0800168
Robert Sloan8f860b12017-08-28 07:37:06 -0700169// DSA_SIG_new returns a freshly allocated, DIG_SIG structure or NULL on error.
170// Both |r| and |s| in the signature will be NULL.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800171OPENSSL_EXPORT DSA_SIG *DSA_SIG_new(void);
172
Robert Sloan8f860b12017-08-28 07:37:06 -0700173// DSA_SIG_free frees the contents of |sig| and then frees |sig| itself.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800174OPENSSL_EXPORT void DSA_SIG_free(DSA_SIG *sig);
175
Robert Sloan8f860b12017-08-28 07:37:06 -0700176// DSA_do_sign returns a signature of the hash in |digest| by the key in |dsa|
177// and returns an allocated, DSA_SIG structure, or NULL on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800178OPENSSL_EXPORT DSA_SIG *DSA_do_sign(const uint8_t *digest, size_t digest_len,
Robert Sloan99319a12017-11-27 10:32:46 -0800179 const DSA *dsa);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800180
Robert Sloan8f860b12017-08-28 07:37:06 -0700181// DSA_do_verify verifies that |sig| is a valid signature, by the public key in
182// |dsa|, of the hash in |digest|. It returns one if so, zero if invalid and -1
183// on error.
184//
185// WARNING: do not use. This function returns -1 for error, 0 for invalid and 1
186// for valid. However, this is dangerously different to the usual OpenSSL
187// convention and could be a disaster if a user did |if (DSA_do_verify(...))|.
188// Because of this, |DSA_check_signature| is a safer version of this.
189//
190// TODO(fork): deprecate.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800191OPENSSL_EXPORT int DSA_do_verify(const uint8_t *digest, size_t digest_len,
192 DSA_SIG *sig, const DSA *dsa);
193
Robert Sloan8f860b12017-08-28 07:37:06 -0700194// DSA_do_check_signature sets |*out_valid| to zero. Then it verifies that |sig|
195// is a valid signature, by the public key in |dsa| of the hash in |digest|
196// and, if so, it sets |*out_valid| to one.
197//
198// It returns one if it was able to verify the signature as valid or invalid,
199// and zero on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800200OPENSSL_EXPORT int DSA_do_check_signature(int *out_valid, const uint8_t *digest,
201 size_t digest_len, DSA_SIG *sig,
202 const DSA *dsa);
203
204
Robert Sloan8f860b12017-08-28 07:37:06 -0700205// ASN.1 signatures.
206//
207// These functions also perform DSA signature operations, but deal with ASN.1
208// encoded signatures as opposed to raw |BIGNUM|s. If you don't know what
209// encoding a DSA signature is in, it's probably ASN.1.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800210
Robert Sloan8f860b12017-08-28 07:37:06 -0700211// DSA_sign signs |digest| with the key in |dsa| and writes the resulting
212// signature, in ASN.1 form, to |out_sig| and the length of the signature to
213// |*out_siglen|. There must be, at least, |DSA_size(dsa)| bytes of space in
214// |out_sig|. It returns one on success and zero otherwise.
215//
216// (The |type| argument is ignored.)
Adam Langleyd9e397b2015-01-22 14:27:53 -0800217OPENSSL_EXPORT int DSA_sign(int type, const uint8_t *digest, size_t digest_len,
218 uint8_t *out_sig, unsigned int *out_siglen,
Robert Sloan99319a12017-11-27 10:32:46 -0800219 const DSA *dsa);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800220
Robert Sloan8f860b12017-08-28 07:37:06 -0700221// DSA_verify verifies that |sig| is a valid, ASN.1 signature, by the public
222// key in |dsa|, of the hash in |digest|. It returns one if so, zero if invalid
223// and -1 on error.
224//
225// (The |type| argument is ignored.)
226//
227// WARNING: do not use. This function returns -1 for error, 0 for invalid and 1
228// for valid. However, this is dangerously different to the usual OpenSSL
229// convention and could be a disaster if a user did |if (DSA_do_verify(...))|.
230// Because of this, |DSA_check_signature| is a safer version of this.
231//
232// TODO(fork): deprecate.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800233OPENSSL_EXPORT int DSA_verify(int type, const uint8_t *digest,
234 size_t digest_len, const uint8_t *sig,
235 size_t sig_len, const DSA *dsa);
236
Robert Sloan8f860b12017-08-28 07:37:06 -0700237// DSA_check_signature sets |*out_valid| to zero. Then it verifies that |sig|
238// is a valid, ASN.1 signature, by the public key in |dsa|, of the hash in
239// |digest|. If so, it sets |*out_valid| to one.
240//
241// It returns one if it was able to verify the signature as valid or invalid,
242// and zero on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800243OPENSSL_EXPORT int DSA_check_signature(int *out_valid, const uint8_t *digest,
244 size_t digest_len, const uint8_t *sig,
245 size_t sig_len, const DSA *dsa);
246
Robert Sloan8f860b12017-08-28 07:37:06 -0700247// DSA_size returns the size, in bytes, of an ASN.1 encoded, DSA signature
248// generated by |dsa|. Parameters must already have been setup in |dsa|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800249OPENSSL_EXPORT int DSA_size(const DSA *dsa);
250
251
Robert Sloan8f860b12017-08-28 07:37:06 -0700252// ASN.1 encoding.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800253
Robert Sloan8f860b12017-08-28 07:37:06 -0700254// DSA_SIG_parse parses a DER-encoded DSA-Sig-Value structure from |cbs| and
255// advances |cbs|. It returns a newly-allocated |DSA_SIG| or NULL on error.
David Benjamin4969cc92016-04-22 15:02:23 -0400256OPENSSL_EXPORT DSA_SIG *DSA_SIG_parse(CBS *cbs);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800257
Robert Sloan8f860b12017-08-28 07:37:06 -0700258// DSA_SIG_marshal marshals |sig| as a DER-encoded DSA-Sig-Value and appends the
259// result to |cbb|. It returns one on success and zero on error.
David Benjamin4969cc92016-04-22 15:02:23 -0400260OPENSSL_EXPORT int DSA_SIG_marshal(CBB *cbb, const DSA_SIG *sig);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800261
Robert Sloan8f860b12017-08-28 07:37:06 -0700262// DSA_parse_public_key parses a DER-encoded DSA public key from |cbs| and
263// advances |cbs|. It returns a newly-allocated |DSA| or NULL on error.
David Benjamin4969cc92016-04-22 15:02:23 -0400264OPENSSL_EXPORT DSA *DSA_parse_public_key(CBS *cbs);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800265
Robert Sloan8f860b12017-08-28 07:37:06 -0700266// DSA_marshal_public_key marshals |dsa| as a DER-encoded DSA public key and
267// appends the result to |cbb|. It returns one on success and zero on
268// failure.
David Benjamin4969cc92016-04-22 15:02:23 -0400269OPENSSL_EXPORT int DSA_marshal_public_key(CBB *cbb, const DSA *dsa);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800270
Robert Sloan8f860b12017-08-28 07:37:06 -0700271// DSA_parse_private_key parses a DER-encoded DSA private key from |cbs| and
272// advances |cbs|. It returns a newly-allocated |DSA| or NULL on error.
David Benjamin4969cc92016-04-22 15:02:23 -0400273OPENSSL_EXPORT DSA *DSA_parse_private_key(CBS *cbs);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800274
Robert Sloan8f860b12017-08-28 07:37:06 -0700275// DSA_marshal_private_key marshals |dsa| as a DER-encoded DSA private key and
276// appends the result to |cbb|. It returns one on success and zero on
277// failure.
David Benjamin4969cc92016-04-22 15:02:23 -0400278OPENSSL_EXPORT int DSA_marshal_private_key(CBB *cbb, const DSA *dsa);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800279
Robert Sloan8f860b12017-08-28 07:37:06 -0700280// DSA_parse_parameters parses a DER-encoded Dss-Parms structure (RFC 3279)
281// from |cbs| and advances |cbs|. It returns a newly-allocated |DSA| or NULL on
282// error.
David Benjamin4969cc92016-04-22 15:02:23 -0400283OPENSSL_EXPORT DSA *DSA_parse_parameters(CBS *cbs);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800284
Robert Sloan8f860b12017-08-28 07:37:06 -0700285// DSA_marshal_parameters marshals |dsa| as a DER-encoded Dss-Parms structure
286// (RFC 3447) and appends the result to |cbb|. It returns one on success and
287// zero on failure.
David Benjamin4969cc92016-04-22 15:02:23 -0400288OPENSSL_EXPORT int DSA_marshal_parameters(CBB *cbb, const DSA *dsa);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800289
290
Robert Sloan8f860b12017-08-28 07:37:06 -0700291// Conversion.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800292
Robert Sloan8f860b12017-08-28 07:37:06 -0700293// DSA_dup_DH returns a |DH| constructed from the parameters of |dsa|. This is
294// sometimes needed when Diffie-Hellman parameters are stored in the form of
295// DSA parameters. It returns an allocated |DH| on success or NULL on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800296OPENSSL_EXPORT DH *DSA_dup_DH(const DSA *dsa);
297
298
Robert Sloan8f860b12017-08-28 07:37:06 -0700299// ex_data functions.
300//
301// See |ex_data.h| for details.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800302
303OPENSSL_EXPORT int DSA_get_ex_new_index(long argl, void *argp,
Adam Langley4139edb2016-01-13 15:00:54 -0800304 CRYPTO_EX_unused *unused,
Robert Sloan8ff03552017-06-14 12:40:58 -0700305 CRYPTO_EX_dup *dup_unused,
Adam Langleyd9e397b2015-01-22 14:27:53 -0800306 CRYPTO_EX_free *free_func);
Robert Sloanfe7cd212017-08-07 09:03:39 -0700307OPENSSL_EXPORT int DSA_set_ex_data(DSA *dsa, int idx, void *arg);
308OPENSSL_EXPORT void *DSA_get_ex_data(const DSA *dsa, int idx);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800309
310
Robert Sloan8f860b12017-08-28 07:37:06 -0700311// Deprecated functions.
David Benjamin4969cc92016-04-22 15:02:23 -0400312
Robert Sloan8f860b12017-08-28 07:37:06 -0700313// d2i_DSA_SIG parses an ASN.1, DER-encoded, DSA signature from |len| bytes at
314// |*inp|. If |out_sig| is not NULL then, on exit, a pointer to the result is
315// in |*out_sig|. Note that, even if |*out_sig| is already non-NULL on entry, it
316// will not be written to. Rather, a fresh |DSA_SIG| is allocated and the
317// previous one is freed. On successful exit, |*inp| is advanced past the DER
318// structure. It returns the result or NULL on error.
319//
320// Use |DSA_SIG_parse| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400321OPENSSL_EXPORT DSA_SIG *d2i_DSA_SIG(DSA_SIG **out_sig, const uint8_t **inp,
322 long len);
323
Robert Sloan8f860b12017-08-28 07:37:06 -0700324// i2d_DSA_SIG marshals |in| to an ASN.1, DER structure. If |outp| is not NULL
325// then the result is written to |*outp| and |*outp| is advanced just past the
326// output. It returns the number of bytes in the result, whether written or not,
327// or a negative value on error.
328//
329// Use |DSA_SIG_marshal| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400330OPENSSL_EXPORT int i2d_DSA_SIG(const DSA_SIG *in, uint8_t **outp);
331
Robert Sloan8f860b12017-08-28 07:37:06 -0700332// d2i_DSAPublicKey parses an ASN.1, DER-encoded, DSA public key from |len|
333// bytes at |*inp|. If |out| is not NULL then, on exit, a pointer to the result
334// is in |*out|. Note that, even if |*ou| is already non-NULL on entry, it will
335// not be written to. Rather, a fresh |DSA| is allocated and the previous one is
336// freed. On successful exit, |*inp| is advanced past the DER structure. It
337// returns the result or NULL on error.
338//
339// Use |DSA_parse_public_key| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400340OPENSSL_EXPORT DSA *d2i_DSAPublicKey(DSA **out, const uint8_t **inp, long len);
341
Robert Sloan8f860b12017-08-28 07:37:06 -0700342// i2d_DSAPublicKey marshals a public key from |in| to an ASN.1, DER structure.
343// If |outp| is not NULL then the result is written to |*outp| and |*outp| is
344// advanced just past the output. It returns the number of bytes in the result,
345// whether written or not, or a negative value on error.
346//
347// Use |DSA_marshal_public_key| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400348OPENSSL_EXPORT int i2d_DSAPublicKey(const DSA *in, uint8_t **outp);
349
Robert Sloan8f860b12017-08-28 07:37:06 -0700350// d2i_DSAPrivateKey parses an ASN.1, DER-encoded, DSA private key from |len|
351// bytes at |*inp|. If |out| is not NULL then, on exit, a pointer to the result
352// is in |*out|. Note that, even if |*out| is already non-NULL on entry, it will
353// not be written to. Rather, a fresh |DSA| is allocated and the previous one is
354// freed. On successful exit, |*inp| is advanced past the DER structure. It
355// returns the result or NULL on error.
356//
357// Use |DSA_parse_private_key| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400358OPENSSL_EXPORT DSA *d2i_DSAPrivateKey(DSA **out, const uint8_t **inp, long len);
359
Robert Sloan8f860b12017-08-28 07:37:06 -0700360// i2d_DSAPrivateKey marshals a private key from |in| to an ASN.1, DER
361// structure. If |outp| is not NULL then the result is written to |*outp| and
362// |*outp| is advanced just past the output. It returns the number of bytes in
363// the result, whether written or not, or a negative value on error.
364//
365// Use |DSA_marshal_private_key| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400366OPENSSL_EXPORT int i2d_DSAPrivateKey(const DSA *in, uint8_t **outp);
367
Robert Sloan8f860b12017-08-28 07:37:06 -0700368// d2i_DSAparams parses ASN.1, DER-encoded, DSA parameters from |len| bytes at
369// |*inp|. If |out| is not NULL then, on exit, a pointer to the result is in
370// |*out|. Note that, even if |*out| is already non-NULL on entry, it will not
371// be written to. Rather, a fresh |DSA| is allocated and the previous one is
372// freed. On successful exit, |*inp| is advanced past the DER structure. It
373// returns the result or NULL on error.
374//
375// Use |DSA_parse_parameters| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400376OPENSSL_EXPORT DSA *d2i_DSAparams(DSA **out, const uint8_t **inp, long len);
377
Robert Sloan8f860b12017-08-28 07:37:06 -0700378// i2d_DSAparams marshals DSA parameters from |in| to an ASN.1, DER structure.
379// If |outp| is not NULL then the result is written to |*outp| and |*outp| is
380// advanced just past the output. It returns the number of bytes in the result,
381// whether written or not, or a negative value on error.
382//
383// Use |DSA_marshal_parameters| instead.
David Benjamin4969cc92016-04-22 15:02:23 -0400384OPENSSL_EXPORT int i2d_DSAparams(const DSA *in, uint8_t **outp);
385
Robert Sloan8f860b12017-08-28 07:37:06 -0700386// DSA_generate_parameters is a deprecated version of
387// |DSA_generate_parameters_ex| that creates and returns a |DSA*|. Don't use
388// it.
David Benjamin4969cc92016-04-22 15:02:23 -0400389OPENSSL_EXPORT DSA *DSA_generate_parameters(int bits, unsigned char *seed,
390 int seed_len, int *counter_ret,
391 unsigned long *h_ret,
392 void (*callback)(int, int, void *),
393 void *cb_arg);
394
395
Adam Langleyd9e397b2015-01-22 14:27:53 -0800396struct dsa_st {
397 long version;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800398 BIGNUM *p;
Robert Sloan8f860b12017-08-28 07:37:06 -0700399 BIGNUM *q; // == 20
Adam Langleyd9e397b2015-01-22 14:27:53 -0800400 BIGNUM *g;
401
Robert Sloan8f860b12017-08-28 07:37:06 -0700402 BIGNUM *pub_key; // y public key
403 BIGNUM *priv_key; // x private key
Adam Langleyd9e397b2015-01-22 14:27:53 -0800404
Adam Langleyd9e397b2015-01-22 14:27:53 -0800405 int flags;
Robert Sloan8f860b12017-08-28 07:37:06 -0700406 // Normally used to cache montgomery values
David Benjaminc895d6b2016-08-11 13:26:41 -0400407 CRYPTO_MUTEX method_mont_lock;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800408 BN_MONT_CTX *method_mont_p;
David Benjaminc895d6b2016-08-11 13:26:41 -0400409 BN_MONT_CTX *method_mont_q;
Adam Langleyf4e42722015-06-04 17:45:09 -0700410 CRYPTO_refcount_t references;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800411 CRYPTO_EX_DATA ex_data;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800412};
413
414
415#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -0700416} // extern C
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400417
418extern "C++" {
419
Robert Sloan726e9d12018-09-11 11:45:04 -0700420BSSL_NAMESPACE_BEGIN
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400421
422BORINGSSL_MAKE_DELETER(DSA, DSA_free)
Robert Sloanf573be72018-09-17 15:29:11 -0700423BORINGSSL_MAKE_UP_REF(DSA, DSA_up_ref)
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400424BORINGSSL_MAKE_DELETER(DSA_SIG, DSA_SIG_free)
425
Robert Sloan726e9d12018-09-11 11:45:04 -0700426BSSL_NAMESPACE_END
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400427
Robert Sloan8f860b12017-08-28 07:37:06 -0700428} // extern C++
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400429
Adam Langleyd9e397b2015-01-22 14:27:53 -0800430#endif
431
Adam Langleye9ada862015-05-11 17:20:37 -0700432#define DSA_R_BAD_Q_VALUE 100
433#define DSA_R_MISSING_PARAMETERS 101
Adam Langleyd9e397b2015-01-22 14:27:53 -0800434#define DSA_R_MODULUS_TOO_LARGE 102
Adam Langleye9ada862015-05-11 17:20:37 -0700435#define DSA_R_NEED_NEW_SETUP_VALUES 103
David Benjamin4969cc92016-04-22 15:02:23 -0400436#define DSA_R_BAD_VERSION 104
437#define DSA_R_DECODE_ERROR 105
438#define DSA_R_ENCODE_ERROR 106
Adam Langleyd9e397b2015-01-22 14:27:53 -0800439
Robert Sloan8f860b12017-08-28 07:37:06 -0700440#endif // OPENSSL_HEADER_DSA_H