OSDN Git Service

Update OpenSSL to 1.0.2a.
[ffftp/ffftp.git] / contrib / openssl / include / openssl / srp.h
1 /* crypto/srp/srp.h */\r
2 /*\r
3  * Written by Christophe Renou (christophe.renou@edelweb.fr) with the\r
4  * precious help of Peter Sylvester (peter.sylvester@edelweb.fr) for the\r
5  * EdelKey project and contributed to the OpenSSL project 2004.\r
6  */\r
7 /* ====================================================================\r
8  * Copyright (c) 2004 The OpenSSL Project.  All rights reserved.\r
9  *\r
10  * Redistribution and use in source and binary forms, with or without\r
11  * modification, are permitted provided that the following conditions\r
12  * are met:\r
13  *\r
14  * 1. Redistributions of source code must retain the above copyright\r
15  *    notice, this list of conditions and the following disclaimer.\r
16  *\r
17  * 2. Redistributions in binary form must reproduce the above copyright\r
18  *    notice, this list of conditions and the following disclaimer in\r
19  *    the documentation and/or other materials provided with the\r
20  *    distribution.\r
21  *\r
22  * 3. All advertising materials mentioning features or use of this\r
23  *    software must display the following acknowledgment:\r
24  *    "This product includes software developed by the OpenSSL Project\r
25  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"\r
26  *\r
27  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to\r
28  *    endorse or promote products derived from this software without\r
29  *    prior written permission. For written permission, please contact\r
30  *    licensing@OpenSSL.org.\r
31  *\r
32  * 5. Products derived from this software may not be called "OpenSSL"\r
33  *    nor may "OpenSSL" appear in their names without prior written\r
34  *    permission of the OpenSSL Project.\r
35  *\r
36  * 6. Redistributions of any form whatsoever must retain the following\r
37  *    acknowledgment:\r
38  *    "This product includes software developed by the OpenSSL Project\r
39  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"\r
40  *\r
41  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY\r
42  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
44  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR\r
45  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\r
46  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT\r
47  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
48  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
49  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
50  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
51  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED\r
52  * OF THE POSSIBILITY OF SUCH DAMAGE.\r
53  * ====================================================================\r
54  *\r
55  * This product includes cryptographic software written by Eric Young\r
56  * (eay@cryptsoft.com).  This product includes software written by Tim\r
57  * Hudson (tjh@cryptsoft.com).\r
58  *\r
59  */\r
60 #ifndef __SRP_H__\r
61 # define __SRP_H__\r
62 \r
63 # ifndef OPENSSL_NO_SRP\r
64 \r
65 #  include <stdio.h>\r
66 #  include <string.h>\r
67 \r
68 #ifdef  __cplusplus\r
69 extern "C" {\r
70 #endif\r
71 \r
72 #  include <openssl/safestack.h>\r
73 #  include <openssl/bn.h>\r
74 #  include <openssl/crypto.h>\r
75 \r
76 typedef struct SRP_gN_cache_st {\r
77     char *b64_bn;\r
78     BIGNUM *bn;\r
79 } SRP_gN_cache;\r
80 \r
81 \r
82 DECLARE_STACK_OF(SRP_gN_cache)\r
83 \r
84 typedef struct SRP_user_pwd_st {\r
85     char *id;\r
86     BIGNUM *s;\r
87     BIGNUM *v;\r
88     const BIGNUM *g;\r
89     const BIGNUM *N;\r
90     char *info;\r
91 } SRP_user_pwd;\r
92 \r
93 DECLARE_STACK_OF(SRP_user_pwd)\r
94 \r
95 typedef struct SRP_VBASE_st {\r
96     STACK_OF(SRP_user_pwd) *users_pwd;\r
97     STACK_OF(SRP_gN_cache) *gN_cache;\r
98 /* to simulate a user */\r
99     char *seed_key;\r
100     BIGNUM *default_g;\r
101     BIGNUM *default_N;\r
102 } SRP_VBASE;\r
103 \r
104 /*\r
105  * Structure interne pour retenir les couples N et g\r
106  */\r
107 typedef struct SRP_gN_st {\r
108     char *id;\r
109     BIGNUM *g;\r
110     BIGNUM *N;\r
111 } SRP_gN;\r
112 \r
113 DECLARE_STACK_OF(SRP_gN)\r
114 \r
115 SRP_VBASE *SRP_VBASE_new(char *seed_key);\r
116 int SRP_VBASE_free(SRP_VBASE *vb);\r
117 int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file);\r
118 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);\r
119 char *SRP_create_verifier(const char *user, const char *pass, char **salt,\r
120                           char **verifier, const char *N, const char *g);\r
121 int SRP_create_verifier_BN(const char *user, const char *pass, BIGNUM **salt,\r
122                            BIGNUM **verifier, BIGNUM *N, BIGNUM *g);\r
123 \r
124 #  define SRP_NO_ERROR 0\r
125 #  define SRP_ERR_VBASE_INCOMPLETE_FILE 1\r
126 #  define SRP_ERR_VBASE_BN_LIB 2\r
127 #  define SRP_ERR_OPEN_FILE 3\r
128 #  define SRP_ERR_MEMORY 4\r
129 \r
130 #  define DB_srptype      0\r
131 #  define DB_srpverifier  1\r
132 #  define DB_srpsalt      2\r
133 #  define DB_srpid        3\r
134 #  define DB_srpgN        4\r
135 #  define DB_srpinfo      5\r
136 #  undef  DB_NUMBER\r
137 #  define DB_NUMBER       6\r
138 \r
139 #  define DB_SRP_INDEX    'I'\r
140 #  define DB_SRP_VALID    'V'\r
141 #  define DB_SRP_REVOKED  'R'\r
142 #  define DB_SRP_MODIF    'v'\r
143 \r
144 /* see srp.c */\r
145 char *SRP_check_known_gN_param(BIGNUM *g, BIGNUM *N);\r
146 SRP_gN *SRP_get_default_gN(const char *id);\r
147 \r
148 /* server side .... */\r
149 BIGNUM *SRP_Calc_server_key(BIGNUM *A, BIGNUM *v, BIGNUM *u, BIGNUM *b,\r
150                             BIGNUM *N);\r
151 BIGNUM *SRP_Calc_B(BIGNUM *b, BIGNUM *N, BIGNUM *g, BIGNUM *v);\r
152 int SRP_Verify_A_mod_N(BIGNUM *A, BIGNUM *N);\r
153 BIGNUM *SRP_Calc_u(BIGNUM *A, BIGNUM *B, BIGNUM *N);\r
154 \r
155 /* client side .... */\r
156 BIGNUM *SRP_Calc_x(BIGNUM *s, const char *user, const char *pass);\r
157 BIGNUM *SRP_Calc_A(BIGNUM *a, BIGNUM *N, BIGNUM *g);\r
158 BIGNUM *SRP_Calc_client_key(BIGNUM *N, BIGNUM *B, BIGNUM *g, BIGNUM *x,\r
159                             BIGNUM *a, BIGNUM *u);\r
160 int SRP_Verify_B_mod_N(BIGNUM *B, BIGNUM *N);\r
161 \r
162 #  define SRP_MINIMAL_N 1024\r
163 \r
164 #ifdef  __cplusplus\r
165 }\r
166 #endif\r
167 \r
168 # endif\r
169 #endif\r