if_iwm - Recognize IWM_FW_PAGING_BLOCK_CMD wide cmd response correctly.
[dragonfly.git] / crypto / openssl / crypto / srp / srp_lib.c
blobe9a2e058f687740aa2d251f24e3551c49ffc7024
1 /* crypto/srp/srp_lib.c */
2 /*
3 * Written by Christophe Renou (christophe.renou@edelweb.fr) with the
4 * precious help of Peter Sylvester (peter.sylvester@edelweb.fr) for the
5 * EdelKey project and contributed to the OpenSSL project 2004.
6 */
7 /* ====================================================================
8 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
20 * distribution.
22 * 3. All advertising materials mentioning features or use of this
23 * software must display the following acknowledgment:
24 * "This product includes software developed by the OpenSSL Project
25 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
27 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
28 * endorse or promote products derived from this software without
29 * prior written permission. For written permission, please contact
30 * licensing@OpenSSL.org.
32 * 5. Products derived from this software may not be called "OpenSSL"
33 * nor may "OpenSSL" appear in their names without prior written
34 * permission of the OpenSSL Project.
36 * 6. Redistributions of any form whatsoever must retain the following
37 * acknowledgment:
38 * "This product includes software developed by the OpenSSL Project
39 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
41 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
42 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
44 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
45 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
47 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
48 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
49 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
50 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
51 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
52 * OF THE POSSIBILITY OF SUCH DAMAGE.
53 * ====================================================================
55 * This product includes cryptographic software written by Eric Young
56 * (eay@cryptsoft.com). This product includes software written by Tim
57 * Hudson (tjh@cryptsoft.com).
60 #ifndef OPENSSL_NO_SRP
61 # include "cryptlib.h"
62 # include "srp_lcl.h"
63 # include <openssl/srp.h>
64 # include <openssl/evp.h>
66 # if (BN_BYTES == 8)
67 # if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
68 # define bn_pack4(a1,a2,a3,a4) ((a1##UI64<<48)|(a2##UI64<<32)|(a3##UI64<<16)|a4##UI64)
69 # elif defined(__arch64__)
70 # define bn_pack4(a1,a2,a3,a4) ((a1##UL<<48)|(a2##UL<<32)|(a3##UL<<16)|a4##UL)
71 # else
72 # define bn_pack4(a1,a2,a3,a4) ((a1##ULL<<48)|(a2##ULL<<32)|(a3##ULL<<16)|a4##ULL)
73 # endif
74 # elif (BN_BYTES == 4)
75 # define bn_pack4(a1,a2,a3,a4) ((a3##UL<<16)|a4##UL), ((a1##UL<<16)|a2##UL)
76 # else
77 # error "unsupported BN_BYTES"
78 # endif
80 # include "srp_grps.h"
82 static BIGNUM *srp_Calc_k(BIGNUM *N, BIGNUM *g)
84 /* k = SHA1(N | PAD(g)) -- tls-srp draft 8 */
86 unsigned char digest[SHA_DIGEST_LENGTH];
87 unsigned char *tmp;
88 EVP_MD_CTX ctxt;
89 int longg;
90 int longN = BN_num_bytes(N);
92 if (BN_ucmp(g, N) >= 0)
93 return NULL;
95 if ((tmp = OPENSSL_malloc(longN)) == NULL)
96 return NULL;
97 BN_bn2bin(N, tmp);
99 EVP_MD_CTX_init(&ctxt);
100 EVP_DigestInit_ex(&ctxt, EVP_sha1(), NULL);
101 EVP_DigestUpdate(&ctxt, tmp, longN);
103 memset(tmp, 0, longN);
104 longg = BN_bn2bin(g, tmp);
105 /* use the zeros behind to pad on left */
106 EVP_DigestUpdate(&ctxt, tmp + longg, longN - longg);
107 EVP_DigestUpdate(&ctxt, tmp, longg);
108 OPENSSL_free(tmp);
110 EVP_DigestFinal_ex(&ctxt, digest, NULL);
111 EVP_MD_CTX_cleanup(&ctxt);
112 return BN_bin2bn(digest, sizeof(digest), NULL);
115 BIGNUM *SRP_Calc_u(BIGNUM *A, BIGNUM *B, BIGNUM *N)
117 /* k = SHA1(PAD(A) || PAD(B) ) -- tls-srp draft 8 */
119 BIGNUM *u;
120 unsigned char cu[SHA_DIGEST_LENGTH];
121 unsigned char *cAB;
122 EVP_MD_CTX ctxt;
123 int longN;
124 if ((A == NULL) || (B == NULL) || (N == NULL))
125 return NULL;
127 if (BN_ucmp(A, N) >= 0 || BN_ucmp(B, N) >= 0)
128 return NULL;
130 longN = BN_num_bytes(N);
132 if ((cAB = OPENSSL_malloc(2 * longN)) == NULL)
133 return NULL;
135 memset(cAB, 0, longN);
137 EVP_MD_CTX_init(&ctxt);
138 EVP_DigestInit_ex(&ctxt, EVP_sha1(), NULL);
139 EVP_DigestUpdate(&ctxt, cAB + BN_bn2bin(A, cAB + longN), longN);
140 EVP_DigestUpdate(&ctxt, cAB + BN_bn2bin(B, cAB + longN), longN);
141 OPENSSL_free(cAB);
142 EVP_DigestFinal_ex(&ctxt, cu, NULL);
143 EVP_MD_CTX_cleanup(&ctxt);
145 if (!(u = BN_bin2bn(cu, sizeof(cu), NULL)))
146 return NULL;
147 if (!BN_is_zero(u))
148 return u;
149 BN_free(u);
150 return NULL;
153 BIGNUM *SRP_Calc_server_key(BIGNUM *A, BIGNUM *v, BIGNUM *u, BIGNUM *b,
154 BIGNUM *N)
156 BIGNUM *tmp = NULL, *S = NULL;
157 BN_CTX *bn_ctx;
159 if (u == NULL || A == NULL || v == NULL || b == NULL || N == NULL)
160 return NULL;
162 if ((bn_ctx = BN_CTX_new()) == NULL ||
163 (tmp = BN_new()) == NULL || (S = BN_new()) == NULL)
164 goto err;
166 /* S = (A*v**u) ** b */
168 if (!BN_mod_exp(tmp, v, u, N, bn_ctx))
169 goto err;
170 if (!BN_mod_mul(tmp, A, tmp, N, bn_ctx))
171 goto err;
172 if (!BN_mod_exp(S, tmp, b, N, bn_ctx))
173 goto err;
174 err:
175 BN_CTX_free(bn_ctx);
176 BN_clear_free(tmp);
177 return S;
180 BIGNUM *SRP_Calc_B(BIGNUM *b, BIGNUM *N, BIGNUM *g, BIGNUM *v)
182 BIGNUM *kv = NULL, *gb = NULL;
183 BIGNUM *B = NULL, *k = NULL;
184 BN_CTX *bn_ctx;
186 if (b == NULL || N == NULL || g == NULL || v == NULL ||
187 (bn_ctx = BN_CTX_new()) == NULL)
188 return NULL;
190 if ((kv = BN_new()) == NULL ||
191 (gb = BN_new()) == NULL || (B = BN_new()) == NULL)
192 goto err;
194 /* B = g**b + k*v */
196 if (!BN_mod_exp(gb, g, b, N, bn_ctx) ||
197 !(k = srp_Calc_k(N, g)) ||
198 !BN_mod_mul(kv, v, k, N, bn_ctx) ||
199 !BN_mod_add(B, gb, kv, N, bn_ctx)) {
200 BN_free(B);
201 B = NULL;
203 err:
204 BN_CTX_free(bn_ctx);
205 BN_clear_free(kv);
206 BN_clear_free(gb);
207 BN_free(k);
208 return B;
211 BIGNUM *SRP_Calc_x(BIGNUM *s, const char *user, const char *pass)
213 unsigned char dig[SHA_DIGEST_LENGTH];
214 EVP_MD_CTX ctxt;
215 unsigned char *cs;
217 if ((s == NULL) || (user == NULL) || (pass == NULL))
218 return NULL;
220 if ((cs = OPENSSL_malloc(BN_num_bytes(s))) == NULL)
221 return NULL;
223 EVP_MD_CTX_init(&ctxt);
224 EVP_DigestInit_ex(&ctxt, EVP_sha1(), NULL);
225 EVP_DigestUpdate(&ctxt, user, strlen(user));
226 EVP_DigestUpdate(&ctxt, ":", 1);
227 EVP_DigestUpdate(&ctxt, pass, strlen(pass));
228 EVP_DigestFinal_ex(&ctxt, dig, NULL);
230 EVP_DigestInit_ex(&ctxt, EVP_sha1(), NULL);
231 BN_bn2bin(s, cs);
232 EVP_DigestUpdate(&ctxt, cs, BN_num_bytes(s));
233 OPENSSL_free(cs);
234 EVP_DigestUpdate(&ctxt, dig, sizeof(dig));
235 EVP_DigestFinal_ex(&ctxt, dig, NULL);
236 EVP_MD_CTX_cleanup(&ctxt);
238 return BN_bin2bn(dig, sizeof(dig), NULL);
241 BIGNUM *SRP_Calc_A(BIGNUM *a, BIGNUM *N, BIGNUM *g)
243 BN_CTX *bn_ctx;
244 BIGNUM *A = NULL;
246 if (a == NULL || N == NULL || g == NULL ||
247 (bn_ctx = BN_CTX_new()) == NULL)
248 return NULL;
250 if ((A = BN_new()) != NULL && !BN_mod_exp(A, g, a, N, bn_ctx)) {
251 BN_free(A);
252 A = NULL;
254 BN_CTX_free(bn_ctx);
255 return A;
258 BIGNUM *SRP_Calc_client_key(BIGNUM *N, BIGNUM *B, BIGNUM *g, BIGNUM *x,
259 BIGNUM *a, BIGNUM *u)
261 BIGNUM *tmp = NULL, *tmp2 = NULL, *tmp3 = NULL, *k = NULL, *K = NULL;
262 BN_CTX *bn_ctx;
264 if (u == NULL || B == NULL || N == NULL || g == NULL || x == NULL
265 || a == NULL || (bn_ctx = BN_CTX_new()) == NULL)
266 return NULL;
268 if ((tmp = BN_new()) == NULL ||
269 (tmp2 = BN_new()) == NULL ||
270 (tmp3 = BN_new()) == NULL || (K = BN_new()) == NULL)
271 goto err;
273 if (!BN_mod_exp(tmp, g, x, N, bn_ctx))
274 goto err;
275 if (!(k = srp_Calc_k(N, g)))
276 goto err;
277 if (!BN_mod_mul(tmp2, tmp, k, N, bn_ctx))
278 goto err;
279 if (!BN_mod_sub(tmp, B, tmp2, N, bn_ctx))
280 goto err;
282 if (!BN_mod_mul(tmp3, u, x, N, bn_ctx))
283 goto err;
284 if (!BN_mod_add(tmp2, a, tmp3, N, bn_ctx))
285 goto err;
286 if (!BN_mod_exp(K, tmp, tmp2, N, bn_ctx))
287 goto err;
289 err:
290 BN_CTX_free(bn_ctx);
291 BN_clear_free(tmp);
292 BN_clear_free(tmp2);
293 BN_clear_free(tmp3);
294 BN_free(k);
295 return K;
298 int SRP_Verify_B_mod_N(BIGNUM *B, BIGNUM *N)
300 BIGNUM *r;
301 BN_CTX *bn_ctx;
302 int ret = 0;
304 if (B == NULL || N == NULL || (bn_ctx = BN_CTX_new()) == NULL)
305 return 0;
307 if ((r = BN_new()) == NULL)
308 goto err;
309 /* Checks if B % N == 0 */
310 if (!BN_nnmod(r, B, N, bn_ctx))
311 goto err;
312 ret = !BN_is_zero(r);
313 err:
314 BN_CTX_free(bn_ctx);
315 BN_free(r);
316 return ret;
319 int SRP_Verify_A_mod_N(BIGNUM *A, BIGNUM *N)
321 /* Checks if A % N == 0 */
322 return SRP_Verify_B_mod_N(A, N);
326 * Check if G and N are kwown parameters. The values have been generated
327 * from the ietf-tls-srp draft version 8
329 char *SRP_check_known_gN_param(BIGNUM *g, BIGNUM *N)
331 size_t i;
332 if ((g == NULL) || (N == NULL))
333 return 0;
335 srp_bn_print(g);
336 srp_bn_print(N);
338 for (i = 0; i < KNOWN_GN_NUMBER; i++) {
339 if (BN_cmp(knowngN[i].g, g) == 0 && BN_cmp(knowngN[i].N, N) == 0)
340 return knowngN[i].id;
342 return NULL;
345 SRP_gN *SRP_get_default_gN(const char *id)
347 size_t i;
349 if (id == NULL)
350 return knowngN;
351 for (i = 0; i < KNOWN_GN_NUMBER; i++) {
352 if (strcmp(knowngN[i].id, id) == 0)
353 return knowngN + i;
355 return NULL;
357 #endif