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