1*de0e0e4dSAntonio Huete Jimenez /* $OpenBSD: dsa.h,v 1.39 2022/07/12 14:42:49 kn Exp $ */
2f5b1c8a1SJohn Marino /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3f5b1c8a1SJohn Marino  * All rights reserved.
4f5b1c8a1SJohn Marino  *
5f5b1c8a1SJohn Marino  * This package is an SSL implementation written
6f5b1c8a1SJohn Marino  * by Eric Young (eay@cryptsoft.com).
7f5b1c8a1SJohn Marino  * The implementation was written so as to conform with Netscapes SSL.
8f5b1c8a1SJohn Marino  *
9f5b1c8a1SJohn Marino  * This library is free for commercial and non-commercial use as long as
10f5b1c8a1SJohn Marino  * the following conditions are aheared to.  The following conditions
11f5b1c8a1SJohn Marino  * apply to all code found in this distribution, be it the RC4, RSA,
12f5b1c8a1SJohn Marino  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13f5b1c8a1SJohn Marino  * included with this distribution is covered by the same copyright terms
14f5b1c8a1SJohn Marino  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15f5b1c8a1SJohn Marino  *
16f5b1c8a1SJohn Marino  * Copyright remains Eric Young's, and as such any Copyright notices in
17f5b1c8a1SJohn Marino  * the code are not to be removed.
18f5b1c8a1SJohn Marino  * If this package is used in a product, Eric Young should be given attribution
19f5b1c8a1SJohn Marino  * as the author of the parts of the library used.
20f5b1c8a1SJohn Marino  * This can be in the form of a textual message at program startup or
21f5b1c8a1SJohn Marino  * in documentation (online or textual) provided with the package.
22f5b1c8a1SJohn Marino  *
23f5b1c8a1SJohn Marino  * Redistribution and use in source and binary forms, with or without
24f5b1c8a1SJohn Marino  * modification, are permitted provided that the following conditions
25f5b1c8a1SJohn Marino  * are met:
26f5b1c8a1SJohn Marino  * 1. Redistributions of source code must retain the copyright
27f5b1c8a1SJohn Marino  *    notice, this list of conditions and the following disclaimer.
28f5b1c8a1SJohn Marino  * 2. Redistributions in binary form must reproduce the above copyright
29f5b1c8a1SJohn Marino  *    notice, this list of conditions and the following disclaimer in the
30f5b1c8a1SJohn Marino  *    documentation and/or other materials provided with the distribution.
31f5b1c8a1SJohn Marino  * 3. All advertising materials mentioning features or use of this software
32f5b1c8a1SJohn Marino  *    must display the following acknowledgement:
33f5b1c8a1SJohn Marino  *    "This product includes cryptographic software written by
34f5b1c8a1SJohn Marino  *     Eric Young (eay@cryptsoft.com)"
35f5b1c8a1SJohn Marino  *    The word 'cryptographic' can be left out if the rouines from the library
36f5b1c8a1SJohn Marino  *    being used are not cryptographic related :-).
37f5b1c8a1SJohn Marino  * 4. If you include any Windows specific code (or a derivative thereof) from
38f5b1c8a1SJohn Marino  *    the apps directory (application code) you must include an acknowledgement:
39f5b1c8a1SJohn Marino  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40f5b1c8a1SJohn Marino  *
41f5b1c8a1SJohn Marino  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42f5b1c8a1SJohn Marino  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43f5b1c8a1SJohn Marino  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44f5b1c8a1SJohn Marino  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45f5b1c8a1SJohn Marino  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46f5b1c8a1SJohn Marino  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47f5b1c8a1SJohn Marino  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48f5b1c8a1SJohn Marino  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49f5b1c8a1SJohn Marino  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50f5b1c8a1SJohn Marino  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51f5b1c8a1SJohn Marino  * SUCH DAMAGE.
52f5b1c8a1SJohn Marino  *
53f5b1c8a1SJohn Marino  * The licence and distribution terms for any publically available version or
54f5b1c8a1SJohn Marino  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55f5b1c8a1SJohn Marino  * copied and put under another distribution licence
56f5b1c8a1SJohn Marino  * [including the GNU Public Licence.]
57f5b1c8a1SJohn Marino  */
58f5b1c8a1SJohn Marino 
59f5b1c8a1SJohn Marino /*
60f5b1c8a1SJohn Marino  * The DSS routines are based on patches supplied by
61f5b1c8a1SJohn Marino  * Steven Schoch <schoch@sheba.arc.nasa.gov>.  He basically did the
62f5b1c8a1SJohn Marino  * work and I have just tweaked them a little to fit into my
63f5b1c8a1SJohn Marino  * stylistic vision for SSLeay :-) */
64f5b1c8a1SJohn Marino 
65f5b1c8a1SJohn Marino #ifndef HEADER_DSA_H
66f5b1c8a1SJohn Marino #define HEADER_DSA_H
67f5b1c8a1SJohn Marino 
68f5b1c8a1SJohn Marino #include <openssl/opensslconf.h>
69f5b1c8a1SJohn Marino 
70f5b1c8a1SJohn Marino #ifdef OPENSSL_NO_DSA
71f5b1c8a1SJohn Marino #error DSA is disabled.
72f5b1c8a1SJohn Marino #endif
73f5b1c8a1SJohn Marino 
74f5b1c8a1SJohn Marino #ifndef OPENSSL_NO_BIO
75f5b1c8a1SJohn Marino #include <openssl/bio.h>
76f5b1c8a1SJohn Marino #endif
77f5b1c8a1SJohn Marino #include <openssl/crypto.h>
78f5b1c8a1SJohn Marino #include <openssl/ossl_typ.h>
79f5b1c8a1SJohn Marino 
80f5b1c8a1SJohn Marino #ifndef OPENSSL_NO_DEPRECATED
81f5b1c8a1SJohn Marino #include <openssl/bn.h>
82f5b1c8a1SJohn Marino #ifndef OPENSSL_NO_DH
83f5b1c8a1SJohn Marino # include <openssl/dh.h>
84f5b1c8a1SJohn Marino #endif
85f5b1c8a1SJohn Marino #endif
86f5b1c8a1SJohn Marino 
87f5b1c8a1SJohn Marino #ifndef OPENSSL_DSA_MAX_MODULUS_BITS
88f5b1c8a1SJohn Marino # define OPENSSL_DSA_MAX_MODULUS_BITS	10000
89f5b1c8a1SJohn Marino #endif
90f5b1c8a1SJohn Marino 
91f5b1c8a1SJohn Marino #define DSA_FLAG_CACHE_MONT_P	0x01
92f5b1c8a1SJohn Marino 
93f5b1c8a1SJohn Marino /* If this flag is set the DSA method is FIPS compliant and can be used
94f5b1c8a1SJohn Marino  * in FIPS mode. This is set in the validated module method. If an
95f5b1c8a1SJohn Marino  * application sets this flag in its own methods it is its reposibility
96f5b1c8a1SJohn Marino  * to ensure the result is compliant.
97f5b1c8a1SJohn Marino  */
98f5b1c8a1SJohn Marino 
99f5b1c8a1SJohn Marino #define DSA_FLAG_FIPS_METHOD			0x0400
100f5b1c8a1SJohn Marino 
101f5b1c8a1SJohn Marino /* If this flag is set the operations normally disabled in FIPS mode are
102f5b1c8a1SJohn Marino  * permitted it is then the applications responsibility to ensure that the
103f5b1c8a1SJohn Marino  * usage is compliant.
104f5b1c8a1SJohn Marino  */
105f5b1c8a1SJohn Marino 
106f5b1c8a1SJohn Marino #define DSA_FLAG_NON_FIPS_ALLOW			0x0400
107f5b1c8a1SJohn Marino 
108f5b1c8a1SJohn Marino #ifdef  __cplusplus
109f5b1c8a1SJohn Marino extern "C" {
110f5b1c8a1SJohn Marino #endif
111f5b1c8a1SJohn Marino 
112*de0e0e4dSAntonio Huete Jimenez typedef struct DSA_SIG_st DSA_SIG;
113f5b1c8a1SJohn Marino 
11472c33676SMaxim Ag DSA *d2i_DSAparams_bio(BIO *bp, DSA **a);
11572c33676SMaxim Ag int i2d_DSAparams_bio(BIO *bp, DSA *a);
11672c33676SMaxim Ag DSA *d2i_DSAparams_fp(FILE *fp, DSA **a);
11772c33676SMaxim Ag int i2d_DSAparams_fp(FILE *fp, DSA *a);
118f5b1c8a1SJohn Marino 
119f5b1c8a1SJohn Marino DSA *DSAparams_dup(DSA *x);
120f5b1c8a1SJohn Marino DSA_SIG * DSA_SIG_new(void);
121f5b1c8a1SJohn Marino void	DSA_SIG_free(DSA_SIG *a);
122f5b1c8a1SJohn Marino int	i2d_DSA_SIG(const DSA_SIG *a, unsigned char **pp);
123f5b1c8a1SJohn Marino DSA_SIG * d2i_DSA_SIG(DSA_SIG **v, const unsigned char **pp, long length);
12472c33676SMaxim Ag void	DSA_SIG_get0(const DSA_SIG *sig, const BIGNUM **pr, const BIGNUM **ps);
12572c33676SMaxim Ag int	DSA_SIG_set0(DSA_SIG *sig, BIGNUM *r, BIGNUM *s);
126f5b1c8a1SJohn Marino 
127f5b1c8a1SJohn Marino DSA_SIG * DSA_do_sign(const unsigned char *dgst,int dlen,DSA *dsa);
128f5b1c8a1SJohn Marino int	DSA_do_verify(const unsigned char *dgst,int dgst_len,
129f5b1c8a1SJohn Marino 		      DSA_SIG *sig,DSA *dsa);
130f5b1c8a1SJohn Marino 
131f5b1c8a1SJohn Marino const DSA_METHOD *DSA_OpenSSL(void);
132f5b1c8a1SJohn Marino 
133f5b1c8a1SJohn Marino void	DSA_set_default_method(const DSA_METHOD *);
134f5b1c8a1SJohn Marino const DSA_METHOD *DSA_get_default_method(void);
135f5b1c8a1SJohn Marino int	DSA_set_method(DSA *dsa, const DSA_METHOD *);
136f5b1c8a1SJohn Marino 
137f5b1c8a1SJohn Marino DSA *	DSA_new(void);
138f5b1c8a1SJohn Marino DSA *	DSA_new_method(ENGINE *engine);
139f5b1c8a1SJohn Marino void	DSA_free(DSA *r);
140f5b1c8a1SJohn Marino /* "up" the DSA object's reference count */
141f5b1c8a1SJohn Marino int	DSA_up_ref(DSA *r);
142f5b1c8a1SJohn Marino int	DSA_size(const DSA *);
143*de0e0e4dSAntonio Huete Jimenez int	DSA_bits(const DSA *d);
144f5b1c8a1SJohn Marino 	/* next 4 return -1 on error */
145f5b1c8a1SJohn Marino int	DSA_sign_setup( DSA *dsa,BN_CTX *ctx_in,BIGNUM **kinvp,BIGNUM **rp);
146f5b1c8a1SJohn Marino int	DSA_sign(int type,const unsigned char *dgst,int dlen,
147f5b1c8a1SJohn Marino 		unsigned char *sig, unsigned int *siglen, DSA *dsa);
148f5b1c8a1SJohn Marino int	DSA_verify(int type,const unsigned char *dgst,int dgst_len,
149f5b1c8a1SJohn Marino 		const unsigned char *sigbuf, int siglen, DSA *dsa);
150f5b1c8a1SJohn Marino int DSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
151f5b1c8a1SJohn Marino 	     CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);
152f5b1c8a1SJohn Marino int DSA_set_ex_data(DSA *d, int idx, void *arg);
153f5b1c8a1SJohn Marino void *DSA_get_ex_data(DSA *d, int idx);
154*de0e0e4dSAntonio Huete Jimenez int DSA_security_bits(const DSA *d);
155f5b1c8a1SJohn Marino 
156f5b1c8a1SJohn Marino DSA *d2i_DSAPublicKey(DSA **a, const unsigned char **pp, long length);
157f5b1c8a1SJohn Marino int i2d_DSAPublicKey(const DSA *a, unsigned char **pp);
158f5b1c8a1SJohn Marino extern const ASN1_ITEM DSAPublicKey_it;
159f5b1c8a1SJohn Marino 
160f5b1c8a1SJohn Marino DSA *d2i_DSAPrivateKey(DSA **a, const unsigned char **pp, long length);
161f5b1c8a1SJohn Marino int i2d_DSAPrivateKey(const DSA *a, unsigned char **pp);
162f5b1c8a1SJohn Marino extern const ASN1_ITEM DSAPrivateKey_it;
163f5b1c8a1SJohn Marino 
164f5b1c8a1SJohn Marino DSA *d2i_DSAparams(DSA **a, const unsigned char **pp, long length);
165f5b1c8a1SJohn Marino int i2d_DSAparams(const DSA *a,unsigned char **pp);
166f5b1c8a1SJohn Marino extern const ASN1_ITEM DSAparams_it;
167f5b1c8a1SJohn Marino 
168f5b1c8a1SJohn Marino /* Deprecated version */
169f5b1c8a1SJohn Marino #ifndef OPENSSL_NO_DEPRECATED
170f5b1c8a1SJohn Marino DSA *	DSA_generate_parameters(int bits,
171f5b1c8a1SJohn Marino 		unsigned char *seed,int seed_len,
172f5b1c8a1SJohn Marino 		int *counter_ret, unsigned long *h_ret,void
173f5b1c8a1SJohn Marino 		(*callback)(int, int, void *),void *cb_arg);
174f5b1c8a1SJohn Marino #endif /* !defined(OPENSSL_NO_DEPRECATED) */
175f5b1c8a1SJohn Marino 
176f5b1c8a1SJohn Marino /* New version */
177f5b1c8a1SJohn Marino int	DSA_generate_parameters_ex(DSA *dsa, int bits,
178f5b1c8a1SJohn Marino 		const unsigned char *seed,int seed_len,
179f5b1c8a1SJohn Marino 		int *counter_ret, unsigned long *h_ret, BN_GENCB *cb);
180f5b1c8a1SJohn Marino 
181f5b1c8a1SJohn Marino int	DSA_generate_key(DSA *a);
182f5b1c8a1SJohn Marino 
183f5b1c8a1SJohn Marino #ifndef OPENSSL_NO_BIO
184f5b1c8a1SJohn Marino int	DSAparams_print(BIO *bp, const DSA *x);
185f5b1c8a1SJohn Marino int	DSA_print(BIO *bp, const DSA *x, int off);
186f5b1c8a1SJohn Marino #endif
187f5b1c8a1SJohn Marino int	DSAparams_print_fp(FILE *fp, const DSA *x);
188f5b1c8a1SJohn Marino int	DSA_print_fp(FILE *bp, const DSA *x, int off);
189f5b1c8a1SJohn Marino 
190*de0e0e4dSAntonio Huete Jimenez /*
191*de0e0e4dSAntonio Huete Jimenez  * Primality test according to FIPS PUB 186-4, Appendix C.3. Set the number
192*de0e0e4dSAntonio Huete Jimenez  * to 64 rounds of Miller-Rabin, which corresponds to 128 bits of security.
193*de0e0e4dSAntonio Huete Jimenez  * This is necessary for keys of size >= 3072.
194*de0e0e4dSAntonio Huete Jimenez  */
195*de0e0e4dSAntonio Huete Jimenez #define DSS_prime_checks 64
196f5b1c8a1SJohn Marino #define DSA_is_prime(n, callback, cb_arg) \
197f5b1c8a1SJohn Marino 	BN_is_prime(n, DSS_prime_checks, callback, NULL, cb_arg)
198f5b1c8a1SJohn Marino 
199f5b1c8a1SJohn Marino #ifndef OPENSSL_NO_DH
200f5b1c8a1SJohn Marino /* Convert DSA structure (key or just parameters) into DH structure
201f5b1c8a1SJohn Marino  * (be careful to avoid small subgroup attacks when using this!) */
202f5b1c8a1SJohn Marino DH *DSA_dup_DH(const DSA *r);
203f5b1c8a1SJohn Marino #endif
204f5b1c8a1SJohn Marino 
20572c33676SMaxim Ag void DSA_get0_pqg(const DSA *d, const BIGNUM **p, const BIGNUM **q,
20672c33676SMaxim Ag     const BIGNUM **g);
20772c33676SMaxim Ag int DSA_set0_pqg(DSA *d, BIGNUM *p, BIGNUM *q, BIGNUM *g);
20872c33676SMaxim Ag void DSA_get0_key(const DSA *d, const BIGNUM **pub_key, const BIGNUM **priv_key);
20972c33676SMaxim Ag int DSA_set0_key(DSA *d, BIGNUM *pub_key, BIGNUM *priv_key);
210*de0e0e4dSAntonio Huete Jimenez const BIGNUM *DSA_get0_p(const DSA *d);
211*de0e0e4dSAntonio Huete Jimenez const BIGNUM *DSA_get0_q(const DSA *d);
212*de0e0e4dSAntonio Huete Jimenez const BIGNUM *DSA_get0_g(const DSA *d);
213*de0e0e4dSAntonio Huete Jimenez const BIGNUM *DSA_get0_pub_key(const DSA *d);
214*de0e0e4dSAntonio Huete Jimenez const BIGNUM *DSA_get0_priv_key(const DSA *d);
21572c33676SMaxim Ag void DSA_clear_flags(DSA *d, int flags);
21672c33676SMaxim Ag int DSA_test_flags(const DSA *d, int flags);
21772c33676SMaxim Ag void DSA_set_flags(DSA *d, int flags);
21872c33676SMaxim Ag ENGINE *DSA_get0_engine(DSA *d);
21972c33676SMaxim Ag 
22072c33676SMaxim Ag DSA_METHOD *DSA_meth_new(const char *name, int flags);
22172c33676SMaxim Ag void DSA_meth_free(DSA_METHOD *meth);
22272c33676SMaxim Ag DSA_METHOD *DSA_meth_dup(const DSA_METHOD *meth);
223*de0e0e4dSAntonio Huete Jimenez const char *DSA_meth_get0_name(const DSA_METHOD *meth);
224*de0e0e4dSAntonio Huete Jimenez int DSA_meth_set1_name(DSA_METHOD *meth, const char *name);
22572c33676SMaxim Ag int DSA_meth_set_sign(DSA_METHOD *meth,
22672c33676SMaxim Ag     DSA_SIG *(*sign)(const unsigned char *, int, DSA *));
22772c33676SMaxim Ag int DSA_meth_set_finish(DSA_METHOD *meth, int (*finish)(DSA *));
22872c33676SMaxim Ag 
229f5b1c8a1SJohn Marino #define EVP_PKEY_CTX_set_dsa_paramgen_bits(ctx, nbits) \
230f5b1c8a1SJohn Marino 	EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_DSA, EVP_PKEY_OP_PARAMGEN, \
231f5b1c8a1SJohn Marino 				EVP_PKEY_CTRL_DSA_PARAMGEN_BITS, nbits, NULL)
232f5b1c8a1SJohn Marino 
233f5b1c8a1SJohn Marino #define	EVP_PKEY_CTRL_DSA_PARAMGEN_BITS		(EVP_PKEY_ALG_CTRL + 1)
234f5b1c8a1SJohn Marino #define	EVP_PKEY_CTRL_DSA_PARAMGEN_Q_BITS	(EVP_PKEY_ALG_CTRL + 2)
235f5b1c8a1SJohn Marino #define	EVP_PKEY_CTRL_DSA_PARAMGEN_MD		(EVP_PKEY_ALG_CTRL + 3)
236f5b1c8a1SJohn Marino 
237f5b1c8a1SJohn Marino void ERR_load_DSA_strings(void);
238f5b1c8a1SJohn Marino 
239f5b1c8a1SJohn Marino /* Error codes for the DSA functions. */
240f5b1c8a1SJohn Marino 
241f5b1c8a1SJohn Marino /* Function codes. */
242f5b1c8a1SJohn Marino #define DSA_F_D2I_DSA_SIG				 110
243f5b1c8a1SJohn Marino #define DSA_F_DO_DSA_PRINT				 104
244f5b1c8a1SJohn Marino #define DSA_F_DSAPARAMS_PRINT				 100
245f5b1c8a1SJohn Marino #define DSA_F_DSAPARAMS_PRINT_FP			 101
246f5b1c8a1SJohn Marino #define DSA_F_DSA_DO_SIGN				 112
247f5b1c8a1SJohn Marino #define DSA_F_DSA_DO_VERIFY				 113
248f5b1c8a1SJohn Marino #define DSA_F_DSA_GENERATE_KEY				 124
249f5b1c8a1SJohn Marino #define DSA_F_DSA_GENERATE_PARAMETERS_EX		 123
250f5b1c8a1SJohn Marino #define DSA_F_DSA_NEW_METHOD				 103
251f5b1c8a1SJohn Marino #define DSA_F_DSA_PARAM_DECODE				 119
252f5b1c8a1SJohn Marino #define DSA_F_DSA_PRINT_FP				 105
253f5b1c8a1SJohn Marino #define DSA_F_DSA_PRIV_DECODE				 115
254f5b1c8a1SJohn Marino #define DSA_F_DSA_PRIV_ENCODE				 116
255f5b1c8a1SJohn Marino #define DSA_F_DSA_PUB_DECODE				 117
256f5b1c8a1SJohn Marino #define DSA_F_DSA_PUB_ENCODE				 118
257f5b1c8a1SJohn Marino #define DSA_F_DSA_SIGN					 106
258f5b1c8a1SJohn Marino #define DSA_F_DSA_SIGN_SETUP				 107
259f5b1c8a1SJohn Marino #define DSA_F_DSA_SIG_NEW				 109
260f5b1c8a1SJohn Marino #define DSA_F_DSA_SIG_PRINT				 125
261f5b1c8a1SJohn Marino #define DSA_F_DSA_VERIFY				 108
262f5b1c8a1SJohn Marino #define DSA_F_I2D_DSA_SIG				 111
263f5b1c8a1SJohn Marino #define DSA_F_OLD_DSA_PRIV_DECODE			 122
264f5b1c8a1SJohn Marino #define DSA_F_PKEY_DSA_CTRL				 120
265f5b1c8a1SJohn Marino #define DSA_F_PKEY_DSA_KEYGEN				 121
266f5b1c8a1SJohn Marino #define DSA_F_SIG_CB					 114
267f5b1c8a1SJohn Marino 
268f5b1c8a1SJohn Marino /* Reason codes. */
269f5b1c8a1SJohn Marino #define DSA_R_BAD_Q_VALUE				 102
270f5b1c8a1SJohn Marino #define DSA_R_BN_DECODE_ERROR				 108
271f5b1c8a1SJohn Marino #define DSA_R_BN_ERROR					 109
272f5b1c8a1SJohn Marino #define DSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE		 100
273f5b1c8a1SJohn Marino #define DSA_R_DECODE_ERROR				 104
274f5b1c8a1SJohn Marino #define DSA_R_INVALID_DIGEST_TYPE			 106
275f5b1c8a1SJohn Marino #define DSA_R_MISSING_PARAMETERS			 101
276f5b1c8a1SJohn Marino #define DSA_R_MODULUS_TOO_LARGE				 103
277f5b1c8a1SJohn Marino #define DSA_R_NEED_NEW_SETUP_VALUES			 110
278f5b1c8a1SJohn Marino #define DSA_R_NON_FIPS_DSA_METHOD			 111
279f5b1c8a1SJohn Marino #define DSA_R_NO_PARAMETERS_SET				 107
280f5b1c8a1SJohn Marino #define DSA_R_PARAMETER_ENCODING_ERROR			 105
281f5b1c8a1SJohn Marino 
282f5b1c8a1SJohn Marino #ifdef  __cplusplus
283f5b1c8a1SJohn Marino }
284f5b1c8a1SJohn Marino #endif
285f5b1c8a1SJohn Marino #endif
286