* copy vendor drop to trunk
[lab.git] / Dev / utvpn / utvpn-unix-v101-7101-public / src / Mayaqua / openssl / dh.h
1 /* crypto/dh/dh.h */\r
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)\r
3  * All rights reserved.\r
4  *\r
5  * This package is an SSL implementation written\r
6  * by Eric Young (eay@cryptsoft.com).\r
7  * The implementation was written so as to conform with Netscapes SSL.\r
8  * \r
9  * This library is free for commercial and non-commercial use as long as\r
10  * the following conditions are aheared to.  The following conditions\r
11  * apply to all code found in this distribution, be it the RC4, RSA,\r
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation\r
13  * included with this distribution is covered by the same copyright terms\r
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).\r
15  * \r
16  * Copyright remains Eric Young's, and as such any Copyright notices in\r
17  * the code are not to be removed.\r
18  * If this package is used in a product, Eric Young should be given attribution\r
19  * as the author of the parts of the library used.\r
20  * This can be in the form of a textual message at program startup or\r
21  * in documentation (online or textual) provided with the package.\r
22  * \r
23  * Redistribution and use in source and binary forms, with or without\r
24  * modification, are permitted provided that the following conditions\r
25  * are met:\r
26  * 1. Redistributions of source code must retain the copyright\r
27  *    notice, this list of conditions and the following disclaimer.\r
28  * 2. Redistributions in binary form must reproduce the above copyright\r
29  *    notice, this list of conditions and the following disclaimer in the\r
30  *    documentation and/or other materials provided with the distribution.\r
31  * 3. All advertising materials mentioning features or use of this software\r
32  *    must display the following acknowledgement:\r
33  *    "This product includes cryptographic software written by\r
34  *     Eric Young (eay@cryptsoft.com)"\r
35  *    The word 'cryptographic' can be left out if the rouines from the library\r
36  *    being used are not cryptographic related :-).\r
37  * 4. If you include any Windows specific code (or a derivative thereof) from \r
38  *    the apps directory (application code) you must include an acknowledgement:\r
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"\r
40  * \r
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND\r
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\r
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
51  * SUCH DAMAGE.\r
52  * \r
53  * The licence and distribution terms for any publically available version or\r
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be\r
55  * copied and put under another distribution licence\r
56  * [including the GNU Public Licence.]\r
57  */\r
58 \r
59 #ifndef HEADER_DH_H\r
60 #define HEADER_DH_H\r
61 \r
62 #include <openssl/e_os2.h>\r
63 \r
64 #ifdef OPENSSL_NO_DH\r
65 #error DH is disabled.\r
66 #endif\r
67 \r
68 #ifndef OPENSSL_NO_BIO\r
69 #include <openssl/bio.h>\r
70 #endif\r
71 #include <openssl/ossl_typ.h>\r
72 #ifndef OPENSSL_NO_DEPRECATED\r
73 #include <openssl/bn.h>\r
74 #endif\r
75         \r
76 #define DH_FLAG_CACHE_MONT_P     0x01\r
77 #define DH_FLAG_NO_EXP_CONSTTIME 0x02 /* new with 0.9.7h; the built-in DH\r
78                                        * implementation now uses constant time\r
79                                        * modular exponentiation for secret exponents\r
80                                        * by default. This flag causes the\r
81                                        * faster variable sliding window method to\r
82                                        * be used for all exponents.\r
83                                        */\r
84 \r
85 #ifdef  __cplusplus\r
86 extern "C" {\r
87 #endif\r
88 \r
89 /* Already defined in ossl_typ.h */\r
90 /* typedef struct dh_st DH; */\r
91 /* typedef struct dh_method DH_METHOD; */\r
92 \r
93 struct dh_method\r
94         {\r
95         const char *name;\r
96         /* Methods here */\r
97         int (*generate_key)(DH *dh);\r
98         int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh);\r
99         int (*bn_mod_exp)(const DH *dh, BIGNUM *r, const BIGNUM *a,\r
100                                 const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx,\r
101                                 BN_MONT_CTX *m_ctx); /* Can be null */\r
102 \r
103         int (*init)(DH *dh);\r
104         int (*finish)(DH *dh);\r
105         int flags;\r
106         char *app_data;\r
107         /* If this is non-NULL, it will be used to generate parameters */\r
108         int (*generate_params)(DH *dh, int prime_len, int generator, BN_GENCB *cb);\r
109         };\r
110 \r
111 struct dh_st\r
112         {\r
113         /* This first argument is used to pick up errors when\r
114          * a DH is passed instead of a EVP_PKEY */\r
115         int pad;\r
116         int version;\r
117         BIGNUM *p;\r
118         BIGNUM *g;\r
119         long length; /* optional */\r
120         BIGNUM *pub_key;        /* g^x */\r
121         BIGNUM *priv_key;       /* x */\r
122 \r
123         int flags;\r
124         BN_MONT_CTX *method_mont_p;\r
125         /* Place holders if we want to do X9.42 DH */\r
126         BIGNUM *q;\r
127         BIGNUM *j;\r
128         unsigned char *seed;\r
129         int seedlen;\r
130         BIGNUM *counter;\r
131 \r
132         int references;\r
133         CRYPTO_EX_DATA ex_data;\r
134         const DH_METHOD *meth;\r
135         ENGINE *engine;\r
136         };\r
137 \r
138 #define DH_GENERATOR_2          2\r
139 /* #define DH_GENERATOR_3       3 */\r
140 #define DH_GENERATOR_5          5\r
141 \r
142 /* DH_check error codes */\r
143 #define DH_CHECK_P_NOT_PRIME            0x01\r
144 #define DH_CHECK_P_NOT_SAFE_PRIME       0x02\r
145 #define DH_UNABLE_TO_CHECK_GENERATOR    0x04\r
146 #define DH_NOT_SUITABLE_GENERATOR       0x08\r
147 \r
148 /* primes p where (p-1)/2 is prime too are called "safe"; we define\r
149    this for backward compatibility: */\r
150 #define DH_CHECK_P_NOT_STRONG_PRIME     DH_CHECK_P_NOT_SAFE_PRIME\r
151 \r
152 #define DHparams_dup(x) ASN1_dup_of_const(DH,i2d_DHparams,d2i_DHparams,x)\r
153 #define d2i_DHparams_fp(fp,x) (DH *)ASN1_d2i_fp((char *(*)())DH_new, \\r
154                 (char *(*)())d2i_DHparams,(fp),(unsigned char **)(x))\r
155 #define i2d_DHparams_fp(fp,x) ASN1_i2d_fp(i2d_DHparams,(fp), \\r
156                 (unsigned char *)(x))\r
157 #define d2i_DHparams_bio(bp,x) ASN1_d2i_bio_of(DH,DH_new,d2i_DHparams,bp,x)\r
158 #define i2d_DHparams_bio(bp,x) ASN1_i2d_bio_of_const(DH,i2d_DHparams,bp,x)\r
159 \r
160 const DH_METHOD *DH_OpenSSL(void);\r
161 \r
162 void DH_set_default_method(const DH_METHOD *meth);\r
163 const DH_METHOD *DH_get_default_method(void);\r
164 int DH_set_method(DH *dh, const DH_METHOD *meth);\r
165 DH *DH_new_method(ENGINE *engine);\r
166 \r
167 DH *    DH_new(void);\r
168 void    DH_free(DH *dh);\r
169 int     DH_up_ref(DH *dh);\r
170 int     DH_size(const DH *dh);\r
171 int DH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,\r
172              CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func);\r
173 int DH_set_ex_data(DH *d, int idx, void *arg);\r
174 void *DH_get_ex_data(DH *d, int idx);\r
175 \r
176 /* Deprecated version */\r
177 #ifndef OPENSSL_NO_DEPRECATED\r
178 DH *    DH_generate_parameters(int prime_len,int generator,\r
179                 void (*callback)(int,int,void *),void *cb_arg);\r
180 #endif /* !defined(OPENSSL_NO_DEPRECATED) */\r
181 \r
182 /* New version */\r
183 int     DH_generate_parameters_ex(DH *dh, int prime_len,int generator, BN_GENCB *cb);\r
184 \r
185 int     DH_check(const DH *dh,int *codes);\r
186 int     DH_generate_key(DH *dh);\r
187 int     DH_compute_key(unsigned char *key,const BIGNUM *pub_key,DH *dh);\r
188 DH *    d2i_DHparams(DH **a,const unsigned char **pp, long length);\r
189 int     i2d_DHparams(const DH *a,unsigned char **pp);\r
190 #ifndef OPENSSL_NO_FP_API\r
191 int     DHparams_print_fp(FILE *fp, const DH *x);\r
192 #endif\r
193 #ifndef OPENSSL_NO_BIO\r
194 int     DHparams_print(BIO *bp, const DH *x);\r
195 #else\r
196 int     DHparams_print(char *bp, const DH *x);\r
197 #endif\r
198 \r
199 /* BEGIN ERROR CODES */\r
200 /* The following lines are auto generated by the script mkerr.pl. Any changes\r
201  * made after this point may be overwritten when the script is next run.\r
202  */\r
203 void ERR_load_DH_strings(void);\r
204 \r
205 /* Error codes for the DH functions. */\r
206 \r
207 /* Function codes. */\r
208 #define DH_F_COMPUTE_KEY                                 102\r
209 #define DH_F_DHPARAMS_PRINT                              100\r
210 #define DH_F_DHPARAMS_PRINT_FP                           101\r
211 #define DH_F_DH_BUILTIN_GENPARAMS                        106\r
212 #define DH_F_DH_NEW_METHOD                               105\r
213 #define DH_F_GENERATE_KEY                                103\r
214 #define DH_F_GENERATE_PARAMETERS                         104\r
215 \r
216 /* Reason codes. */\r
217 #define DH_R_BAD_GENERATOR                               101\r
218 #define DH_R_NO_PRIVATE_VALUE                            100\r
219 \r
220 #ifdef  __cplusplus\r
221 }\r
222 #endif\r
223 #endif\r