]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/srp/srp_vfy.c
SRP module documentation
[thirdparty/openssl.git] / crypto / srp / srp_vfy.c
CommitLineData
0f113f3e 1/*
3b855b1f
TH
2 * Copyright 2004-2018 The OpenSSL Project Authors. All Rights Reserved.
3 * Copyright (c) 2004, EdelKey Project. All Rights Reserved.
edc032b5 4 *
aa6bb135
RS
5 * Licensed under the OpenSSL license (the "License"). You may not use
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
3b855b1f
TH
9 *
10 * Originally written by Christophe Renou and Peter Sylvester,
11 * for the EdelKey project.
edc032b5 12 */
aa6bb135 13
edc032b5 14#ifndef OPENSSL_NO_SRP
b39fc560 15# include "internal/cryptlib.h"
c0804614 16# include "internal/evp_int.h"
dfb56425 17# include <openssl/sha.h>
0f113f3e
MC
18# include <openssl/srp.h>
19# include <openssl/evp.h>
20# include <openssl/buffer.h>
21# include <openssl/rand.h>
22# include <openssl/txt_db.h>
cdb10bae 23# include <openssl/err.h>
edc032b5 24
0f113f3e
MC
25# define SRP_RANDOM_SALT_LEN 20
26# define MAX_LEN 2500
edc032b5 27
3fd59700
MC
28/*
29 * Note that SRP uses its own variant of base 64 encoding. A different base64
30 * alphabet is used and no padding '=' characters are added. Instead we pad to
31 * the front with 0 bytes and subsequently strip off leading encoded padding.
32 * This variant is used for compatibility with other SRP implementations -
33 * notably libsrp, but also others. It is also required for backwards
34 * compatibility in order to load verifier files from other OpenSSL versions.
35 */
36
edc032b5
BL
37/*
38 * Convert a base64 string into raw byte array representation.
c0804614 39 * Returns the length of the decoded data, or -1 on error.
edc032b5 40 */
73f0df83 41static int t_fromb64(unsigned char *a, size_t alen, const char *src)
0f113f3e 42{
c0804614
MC
43 EVP_ENCODE_CTX *ctx;
44 int outl = 0, outl2 = 0;
3fd59700
MC
45 size_t size, padsize;
46 const unsigned char *pad = (const unsigned char *)"00";
ecca1663 47
3fd59700
MC
48 while (*src == ' ' || *src == '\t' || *src == '\n')
49 ++src;
50 size = strlen(src);
51 padsize = 4 - (size & 3);
52 padsize &= 3;
53
54 /* Four bytes in src become three bytes output. */
55 if (size > INT_MAX || ((size + padsize) / 4) * 3 > alen)
73f0df83
MC
56 return -1;
57
c0804614
MC
58 ctx = EVP_ENCODE_CTX_new();
59 if (ctx == NULL)
60 return -1;
61
3fd59700
MC
62 /*
63 * This should never occur because 1 byte of data always requires 2 bytes of
64 * encoding, i.e.
65 * 0 bytes unencoded = 0 bytes encoded
66 * 1 byte unencoded = 2 bytes encoded
67 * 2 bytes unencoded = 3 bytes encoded
68 * 3 bytes unencoded = 4 bytes encoded
69 * 4 bytes unencoded = 6 bytes encoded
70 * etc
71 */
9f2a3bb1
MC
72 if (padsize == 3) {
73 outl = -1;
74 goto err;
75 }
3fd59700
MC
76
77 /* Valid padsize values are now 0, 1 or 2 */
78
c0804614 79 EVP_DecodeInit(ctx);
3fd59700
MC
80 evp_encode_ctx_set_flags(ctx, EVP_ENCODE_CTX_USE_SRP_ALPHABET);
81
82 /* Add any encoded padding that is required */
83 if (padsize != 0
84 && EVP_DecodeUpdate(ctx, a, &outl, pad, padsize) < 0) {
9f2a3bb1
MC
85 outl = -1;
86 goto err;
3fd59700
MC
87 }
88 if (EVP_DecodeUpdate(ctx, a, &outl2, (const unsigned char *)src, size) < 0) {
9f2a3bb1
MC
89 outl = -1;
90 goto err;
c0804614 91 }
3fd59700 92 outl += outl2;
c0804614 93 EVP_DecodeFinal(ctx, a + outl, &outl2);
3fd59700
MC
94 outl += outl2;
95
96 /* Strip off the leading padding */
97 if (padsize != 0) {
9f2a3bb1
MC
98 if ((int)padsize >= outl) {
99 outl = -1;
100 goto err;
101 }
102
3fd59700
MC
103 /*
104 * If we added 1 byte of padding prior to encoding then we have 2 bytes
105 * of "real" data which gets spread across 4 encoded bytes like this:
106 * (6 bits pad)(2 bits pad | 4 bits data)(6 bits data)(6 bits data)
107 * So 1 byte of pre-encoding padding results in 1 full byte of encoded
108 * padding.
109 * If we added 2 bytes of padding prior to encoding this gets encoded
110 * as:
111 * (6 bits pad)(6 bits pad)(4 bits pad | 2 bits data)(6 bits data)
112 * So 2 bytes of pre-encoding padding results in 2 full bytes of encoded
113 * padding, i.e. we have to strip the same number of bytes of padding
114 * from the encoded data as we added to the pre-encoded data.
115 */
116 memmove(a, a + padsize, outl - padsize);
117 outl -= padsize;
118 }
c0804614 119
9f2a3bb1 120 err:
c0804614 121 EVP_ENCODE_CTX_free(ctx);
3fd59700
MC
122
123 return outl;
0f113f3e 124}
edc032b5
BL
125
126/*
127 * Convert a raw byte string into a null-terminated base64 ASCII string.
c0804614 128 * Returns 1 on success or 0 on error.
edc032b5 129 */
c0804614 130static int t_tob64(char *dst, const unsigned char *src, int size)
0f113f3e 131{
c0804614
MC
132 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
133 int outl = 0, outl2 = 0;
3fd59700
MC
134 unsigned char pad[2] = {0, 0};
135 size_t leadz = 0;
c0804614
MC
136
137 if (ctx == NULL)
138 return 0;
139
140 EVP_EncodeInit(ctx);
3fd59700
MC
141 evp_encode_ctx_set_flags(ctx, EVP_ENCODE_CTX_NO_NEWLINES
142 | EVP_ENCODE_CTX_USE_SRP_ALPHABET);
143
144 /*
145 * We pad at the front with zero bytes until the length is a multiple of 3
146 * so that EVP_EncodeUpdate/EVP_EncodeFinal does not add any of its own "="
147 * padding
148 */
149 leadz = 3 - (size % 3);
150 if (leadz != 3
151 && !EVP_EncodeUpdate(ctx, (unsigned char *)dst, &outl, pad,
152 leadz)) {
153 EVP_ENCODE_CTX_free(ctx);
154 return 0;
155 }
c0804614 156
3fd59700
MC
157 if (!EVP_EncodeUpdate(ctx, (unsigned char *)dst + outl, &outl2, src,
158 size)) {
c0804614
MC
159 EVP_ENCODE_CTX_free(ctx);
160 return 0;
161 }
3fd59700 162 outl += outl2;
c0804614 163 EVP_EncodeFinal(ctx, (unsigned char *)dst + outl, &outl2);
3fd59700
MC
164 outl += outl2;
165
166 /* Strip the encoded padding at the front */
167 if (leadz != 3) {
168 memmove(dst, dst + leadz, outl - leadz);
169 dst[outl - leadz] = '\0';
170 }
c0804614
MC
171
172 EVP_ENCODE_CTX_free(ctx);
173 return 1;
0f113f3e 174}
edc032b5 175
380f18ed 176void SRP_user_pwd_free(SRP_user_pwd *user_pwd)
0f113f3e
MC
177{
178 if (user_pwd == NULL)
179 return;
180 BN_free(user_pwd->s);
181 BN_clear_free(user_pwd->v);
182 OPENSSL_free(user_pwd->id);
183 OPENSSL_free(user_pwd->info);
184 OPENSSL_free(user_pwd);
185}
edc032b5 186
71fa4513 187static SRP_user_pwd *SRP_user_pwd_new(void)
0f113f3e 188{
cdb10bae
RS
189 SRP_user_pwd *ret;
190
191 if ((ret = OPENSSL_malloc(sizeof(*ret))) == NULL) {
3ccfcd8a 192 /* SRPerr(SRP_F_SRP_USER_PWD_NEW, ERR_R_MALLOC_FAILURE); */ /*ckerr_ignore*/
0f113f3e 193 return NULL;
cdb10bae 194 }
0f113f3e
MC
195 ret->N = NULL;
196 ret->g = NULL;
197 ret->s = NULL;
198 ret->v = NULL;
199 ret->id = NULL;
200 ret->info = NULL;
201 return ret;
202}
edc032b5
BL
203
204static void SRP_user_pwd_set_gN(SRP_user_pwd *vinfo, const BIGNUM *g,
0f113f3e
MC
205 const BIGNUM *N)
206{
207 vinfo->N = N;
208 vinfo->g = g;
209}
edc032b5
BL
210
211static int SRP_user_pwd_set_ids(SRP_user_pwd *vinfo, const char *id,
0f113f3e
MC
212 const char *info)
213{
7644a9ae 214 if (id != NULL && NULL == (vinfo->id = OPENSSL_strdup(id)))
0f113f3e 215 return 0;
7644a9ae 216 return (info == NULL || NULL != (vinfo->info = OPENSSL_strdup(info)));
0f113f3e 217}
edc032b5
BL
218
219static int SRP_user_pwd_set_sv(SRP_user_pwd *vinfo, const char *s,
0f113f3e
MC
220 const char *v)
221{
222 unsigned char tmp[MAX_LEN];
223 int len;
224
73f0df83
MC
225 vinfo->v = NULL;
226 vinfo->s = NULL;
227
228 len = t_fromb64(tmp, sizeof(tmp), v);
229 if (len < 0)
0f113f3e 230 return 0;
0f113f3e
MC
231 if (NULL == (vinfo->v = BN_bin2bn(tmp, len, NULL)))
232 return 0;
73f0df83
MC
233 len = t_fromb64(tmp, sizeof(tmp), s);
234 if (len < 0)
235 goto err;
236 vinfo->s = BN_bin2bn(tmp, len, NULL);
237 if (vinfo->s == NULL)
238 goto err;
239 return 1;
240 err:
241 BN_free(vinfo->v);
242 vinfo->v = NULL;
243 return 0;
0f113f3e 244}
edc032b5 245
71fa4513 246static int SRP_user_pwd_set_sv_BN(SRP_user_pwd *vinfo, BIGNUM *s, BIGNUM *v)
0f113f3e
MC
247{
248 vinfo->v = v;
249 vinfo->s = s;
250 return (vinfo->s != NULL && vinfo->v != NULL);
251}
edc032b5 252
380f18ed
EK
253static SRP_user_pwd *srp_user_pwd_dup(SRP_user_pwd *src)
254{
255 SRP_user_pwd *ret;
256
257 if (src == NULL)
258 return NULL;
259 if ((ret = SRP_user_pwd_new()) == NULL)
260 return NULL;
261
262 SRP_user_pwd_set_gN(ret, src->g, src->N);
263 if (!SRP_user_pwd_set_ids(ret, src->id, src->info)
264 || !SRP_user_pwd_set_sv_BN(ret, BN_dup(src->s), BN_dup(src->v))) {
265 SRP_user_pwd_free(ret);
266 return NULL;
267 }
268 return ret;
269}
270
edc032b5 271SRP_VBASE *SRP_VBASE_new(char *seed_key)
0f113f3e 272{
b4faea50 273 SRP_VBASE *vb = OPENSSL_malloc(sizeof(*vb));
0f113f3e
MC
274
275 if (vb == NULL)
276 return NULL;
75ebbd9a
RS
277 if ((vb->users_pwd = sk_SRP_user_pwd_new_null()) == NULL
278 || (vb->gN_cache = sk_SRP_gN_cache_new_null()) == NULL) {
0f113f3e
MC
279 OPENSSL_free(vb);
280 return NULL;
281 }
282 vb->default_g = NULL;
283 vb->default_N = NULL;
284 vb->seed_key = NULL;
7644a9ae 285 if ((seed_key != NULL) && (vb->seed_key = OPENSSL_strdup(seed_key)) == NULL) {
0f113f3e
MC
286 sk_SRP_user_pwd_free(vb->users_pwd);
287 sk_SRP_gN_cache_free(vb->gN_cache);
288 OPENSSL_free(vb);
289 return NULL;
290 }
291 return vb;
292}
edc032b5 293
895cba19 294void SRP_VBASE_free(SRP_VBASE *vb)
0f113f3e 295{
895cba19
RS
296 if (!vb)
297 return;
0f113f3e
MC
298 sk_SRP_user_pwd_pop_free(vb->users_pwd, SRP_user_pwd_free);
299 sk_SRP_gN_cache_free(vb->gN_cache);
300 OPENSSL_free(vb->seed_key);
301 OPENSSL_free(vb);
0f113f3e 302}
edc032b5
BL
303
304static SRP_gN_cache *SRP_gN_new_init(const char *ch)
0f113f3e
MC
305{
306 unsigned char tmp[MAX_LEN];
307 int len;
b4faea50 308 SRP_gN_cache *newgN = OPENSSL_malloc(sizeof(*newgN));
edc032b5 309
0f113f3e
MC
310 if (newgN == NULL)
311 return NULL;
edc032b5 312
73f0df83
MC
313 len = t_fromb64(tmp, sizeof(tmp), ch);
314 if (len < 0)
315 goto err;
316
7644a9ae 317 if ((newgN->b64_bn = OPENSSL_strdup(ch)) == NULL)
0f113f3e 318 goto err;
edc032b5 319
0f113f3e
MC
320 if ((newgN->bn = BN_bin2bn(tmp, len, NULL)))
321 return newgN;
edc032b5 322
0f113f3e
MC
323 OPENSSL_free(newgN->b64_bn);
324 err:
325 OPENSSL_free(newgN);
326 return NULL;
327}
edc032b5
BL
328
329static void SRP_gN_free(SRP_gN_cache *gN_cache)
0f113f3e
MC
330{
331 if (gN_cache == NULL)
332 return;
333 OPENSSL_free(gN_cache->b64_bn);
334 BN_free(gN_cache->bn);
335 OPENSSL_free(gN_cache);
336}
edc032b5
BL
337
338static SRP_gN *SRP_get_gN_by_id(const char *id, STACK_OF(SRP_gN) *gN_tab)
0f113f3e
MC
339{
340 int i;
341
342 SRP_gN *gN;
495a1e5c 343 if (gN_tab != NULL) {
0f113f3e
MC
344 for (i = 0; i < sk_SRP_gN_num(gN_tab); i++) {
345 gN = sk_SRP_gN_value(gN_tab, i);
346 if (gN && (id == NULL || strcmp(gN->id, id) == 0))
347 return gN;
348 }
495a1e5c 349 }
0f113f3e
MC
350
351 return SRP_get_default_gN(id);
352}
edc032b5
BL
353
354static BIGNUM *SRP_gN_place_bn(STACK_OF(SRP_gN_cache) *gN_cache, char *ch)
0f113f3e
MC
355{
356 int i;
357 if (gN_cache == NULL)
358 return NULL;
359
360 /* search if we have already one... */
361 for (i = 0; i < sk_SRP_gN_cache_num(gN_cache); i++) {
362 SRP_gN_cache *cache = sk_SRP_gN_cache_value(gN_cache, i);
363 if (strcmp(cache->b64_bn, ch) == 0)
364 return cache->bn;
365 }
366 { /* it is the first time that we find it */
367 SRP_gN_cache *newgN = SRP_gN_new_init(ch);
368 if (newgN) {
369 if (sk_SRP_gN_cache_insert(gN_cache, newgN, 0) > 0)
370 return newgN->bn;
371 SRP_gN_free(newgN);
372 }
373 }
374 return NULL;
375}
376
377/*
495a1e5c
AS
378 * This function parses the verifier file generated by the srp app.
379 * The format for each entry is:
380 * V base64(verifier) base64(salt) username gNid userinfo(optional)
381 * or
382 * I base64(N) base64(g)
383 * Note that base64 is the SRP variant of base64 encoding described
384 * in t_fromb64().
edc032b5
BL
385 */
386
edc032b5 387int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file)
0f113f3e
MC
388{
389 int error_code;
390 STACK_OF(SRP_gN) *SRP_gN_tab = sk_SRP_gN_new_null();
391 char *last_index = NULL;
392 int i;
393 char **pp;
394
395 SRP_gN *gN = NULL;
396 SRP_user_pwd *user_pwd = NULL;
397
398 TXT_DB *tmpdb = NULL;
399 BIO *in = BIO_new(BIO_s_file());
400
401 error_code = SRP_ERR_OPEN_FILE;
402
403 if (in == NULL || BIO_read_filename(in, verifier_file) <= 0)
404 goto err;
405
406 error_code = SRP_ERR_VBASE_INCOMPLETE_FILE;
407
408 if ((tmpdb = TXT_DB_read(in, DB_NUMBER)) == NULL)
409 goto err;
410
411 error_code = SRP_ERR_MEMORY;
412
413 if (vb->seed_key) {
414 last_index = SRP_get_default_gN(NULL)->id;
415 }
416 for (i = 0; i < sk_OPENSSL_PSTRING_num(tmpdb->data); i++) {
417 pp = sk_OPENSSL_PSTRING_value(tmpdb->data, i);
418 if (pp[DB_srptype][0] == DB_SRP_INDEX) {
419 /*
420 * we add this couple in the internal Stack
421 */
422
b4faea50 423 if ((gN = OPENSSL_malloc(sizeof(*gN))) == NULL)
0f113f3e
MC
424 goto err;
425
7644a9ae 426 if ((gN->id = OPENSSL_strdup(pp[DB_srpid])) == NULL
75ebbd9a
RS
427 || (gN->N = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpverifier]))
428 == NULL
429 || (gN->g = SRP_gN_place_bn(vb->gN_cache, pp[DB_srpsalt]))
430 == NULL
0f113f3e
MC
431 || sk_SRP_gN_insert(SRP_gN_tab, gN, 0) == 0)
432 goto err;
433
434 gN = NULL;
435
436 if (vb->seed_key != NULL) {
437 last_index = pp[DB_srpid];
438 }
439 } else if (pp[DB_srptype][0] == DB_SRP_VALID) {
440 /* it is a user .... */
441 const SRP_gN *lgN;
442
443 if ((lgN = SRP_get_gN_by_id(pp[DB_srpgN], SRP_gN_tab)) != NULL) {
444 error_code = SRP_ERR_MEMORY;
445 if ((user_pwd = SRP_user_pwd_new()) == NULL)
446 goto err;
447
448 SRP_user_pwd_set_gN(user_pwd, lgN->g, lgN->N);
449 if (!SRP_user_pwd_set_ids
450 (user_pwd, pp[DB_srpid], pp[DB_srpinfo]))
451 goto err;
452
453 error_code = SRP_ERR_VBASE_BN_LIB;
454 if (!SRP_user_pwd_set_sv
455 (user_pwd, pp[DB_srpsalt], pp[DB_srpverifier]))
456 goto err;
457
458 if (sk_SRP_user_pwd_insert(vb->users_pwd, user_pwd, 0) == 0)
459 goto err;
8483a003 460 user_pwd = NULL; /* abandon responsibility */
0f113f3e
MC
461 }
462 }
463 }
464
465 if (last_index != NULL) {
466 /* this means that we want to simulate a default user */
467
468 if (((gN = SRP_get_gN_by_id(last_index, SRP_gN_tab)) == NULL)) {
469 error_code = SRP_ERR_VBASE_BN_LIB;
470 goto err;
471 }
472 vb->default_g = gN->g;
473 vb->default_N = gN->N;
474 gN = NULL;
475 }
476 error_code = SRP_NO_ERROR;
edc032b5
BL
477
478 err:
0f113f3e
MC
479 /*
480 * there may be still some leaks to fix, if this fails, the application
481 * terminates most likely
482 */
edc032b5 483
0f113f3e
MC
484 if (gN != NULL) {
485 OPENSSL_free(gN->id);
486 OPENSSL_free(gN);
487 }
edc032b5 488
0f113f3e 489 SRP_user_pwd_free(user_pwd);
edc032b5 490
895cba19 491 TXT_DB_free(tmpdb);
ca3a82c3 492 BIO_free_all(in);
edc032b5 493
0f113f3e 494 sk_SRP_gN_free(SRP_gN_tab);
edc032b5 495
0f113f3e 496 return error_code;
edc032b5 497
0f113f3e 498}
edc032b5 499
380f18ed 500static SRP_user_pwd *find_user(SRP_VBASE *vb, char *username)
0f113f3e
MC
501{
502 int i;
503 SRP_user_pwd *user;
0f113f3e
MC
504
505 if (vb == NULL)
506 return NULL;
380f18ed 507
0f113f3e
MC
508 for (i = 0; i < sk_SRP_user_pwd_num(vb->users_pwd); i++) {
509 user = sk_SRP_user_pwd_value(vb->users_pwd, i);
510 if (strcmp(user->id, username) == 0)
511 return user;
512 }
380f18ed
EK
513
514 return NULL;
515}
516
d88ab353 517# if OPENSSL_API_COMPAT < 0x10100000L
380f18ed
EK
518/*
519 * DEPRECATED: use SRP_VBASE_get1_by_user instead.
520 * This method ignores the configured seed and fails for an unknown user.
521 * Ownership of the returned pointer is not released to the caller.
522 * In other words, caller must not free the result.
523 */
524SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username)
525{
526 return find_user(vb, username);
527}
d88ab353 528# endif
380f18ed
EK
529
530/*
531 * Ownership of the returned pointer is released to the caller.
532 * In other words, caller must free the result once done.
533 */
534SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username)
535{
536 SRP_user_pwd *user;
537 unsigned char digv[SHA_DIGEST_LENGTH];
538 unsigned char digs[SHA_DIGEST_LENGTH];
539 EVP_MD_CTX *ctxt = NULL;
540
541 if (vb == NULL)
542 return NULL;
543
544 if ((user = find_user(vb, username)) != NULL)
545 return srp_user_pwd_dup(user);
546
0f113f3e
MC
547 if ((vb->seed_key == NULL) ||
548 (vb->default_g == NULL) || (vb->default_N == NULL))
549 return NULL;
edc032b5
BL
550
551/* if the user is unknown we set parameters as well if we have a seed_key */
552
0f113f3e
MC
553 if ((user = SRP_user_pwd_new()) == NULL)
554 return NULL;
555
556 SRP_user_pwd_set_gN(user, vb->default_g, vb->default_N);
edc032b5 557
0f113f3e
MC
558 if (!SRP_user_pwd_set_ids(user, username, NULL))
559 goto err;
560
4cffafe9 561 if (RAND_priv_bytes(digv, SHA_DIGEST_LENGTH) <= 0)
266483d2 562 goto err;
bfb0641f 563 ctxt = EVP_MD_CTX_new();
d166ed8c
DSH
564 if (ctxt == NULL
565 || !EVP_DigestInit_ex(ctxt, EVP_sha1(), NULL)
566 || !EVP_DigestUpdate(ctxt, vb->seed_key, strlen(vb->seed_key))
567 || !EVP_DigestUpdate(ctxt, username, strlen(username))
568 || !EVP_DigestFinal_ex(ctxt, digs, NULL))
569 goto err;
bfb0641f 570 EVP_MD_CTX_free(ctxt);
6e59a892
RL
571 ctxt = NULL;
572 if (SRP_user_pwd_set_sv_BN(user,
573 BN_bin2bn(digs, SHA_DIGEST_LENGTH, NULL),
574 BN_bin2bn(digv, SHA_DIGEST_LENGTH, NULL)))
0f113f3e
MC
575 return user;
576
895cba19 577 err:
bfb0641f 578 EVP_MD_CTX_free(ctxt);
895cba19 579 SRP_user_pwd_free(user);
0f113f3e
MC
580 return NULL;
581}
edc032b5
BL
582
583/*
0f113f3e
MC
584 * create a verifier (*salt,*verifier,g and N are in base64)
585 */
edc032b5 586char *SRP_create_verifier(const char *user, const char *pass, char **salt,
0f113f3e
MC
587 char **verifier, const char *N, const char *g)
588{
589 int len;
bf95cde2 590 char *result = NULL, *vf = NULL;
98370c2d
MC
591 const BIGNUM *N_bn = NULL, *g_bn = NULL;
592 BIGNUM *N_bn_alloc = NULL, *g_bn_alloc = NULL, *s = NULL, *v = NULL;
0f113f3e
MC
593 unsigned char tmp[MAX_LEN];
594 unsigned char tmp2[MAX_LEN];
595 char *defgNid = NULL;
bf95cde2 596 int vfsize = 0;
0f113f3e
MC
597
598 if ((user == NULL) ||
599 (pass == NULL) || (salt == NULL) || (verifier == NULL))
600 goto err;
601
602 if (N) {
73f0df83 603 if ((len = t_fromb64(tmp, sizeof(tmp), N)) <= 0)
0f113f3e 604 goto err;
98370c2d
MC
605 N_bn_alloc = BN_bin2bn(tmp, len, NULL);
606 N_bn = N_bn_alloc;
73f0df83 607 if ((len = t_fromb64(tmp, sizeof(tmp) ,g)) <= 0)
0f113f3e 608 goto err;
98370c2d
MC
609 g_bn_alloc = BN_bin2bn(tmp, len, NULL);
610 g_bn = g_bn_alloc;
0f113f3e
MC
611 defgNid = "*";
612 } else {
495a1e5c 613 SRP_gN *gN = SRP_get_default_gN(g);
0f113f3e
MC
614 if (gN == NULL)
615 goto err;
616 N_bn = gN->N;
617 g_bn = gN->g;
618 defgNid = gN->id;
619 }
620
621 if (*salt == NULL) {
266483d2
MC
622 if (RAND_bytes(tmp2, SRP_RANDOM_SALT_LEN) <= 0)
623 goto err;
0f113f3e
MC
624
625 s = BN_bin2bn(tmp2, SRP_RANDOM_SALT_LEN, NULL);
626 } else {
73f0df83 627 if ((len = t_fromb64(tmp2, sizeof(tmp2), *salt)) <= 0)
0f113f3e
MC
628 goto err;
629 s = BN_bin2bn(tmp2, len, NULL);
630 }
631
632 if (!SRP_create_verifier_BN(user, pass, &s, &v, N_bn, g_bn))
633 goto err;
634
635 BN_bn2bin(v, tmp);
bf95cde2
MC
636 vfsize = BN_num_bytes(v) * 2;
637 if (((vf = OPENSSL_malloc(vfsize)) == NULL))
0f113f3e
MC
638 goto err;
639 t_tob64(vf, tmp, BN_num_bytes(v));
640
0f113f3e
MC
641 if (*salt == NULL) {
642 char *tmp_salt;
643
644 if ((tmp_salt = OPENSSL_malloc(SRP_RANDOM_SALT_LEN * 2)) == NULL) {
0f113f3e
MC
645 goto err;
646 }
647 t_tob64(tmp_salt, tmp2, SRP_RANDOM_SALT_LEN);
648 *salt = tmp_salt;
649 }
650
bf95cde2
MC
651 *verifier = vf;
652 vf = NULL;
0f113f3e
MC
653 result = defgNid;
654
655 err:
98370c2d
MC
656 BN_free(N_bn_alloc);
657 BN_free(g_bn_alloc);
bf95cde2
MC
658 OPENSSL_clear_free(vf, vfsize);
659 BN_clear_free(s);
660 BN_clear_free(v);
0f113f3e
MC
661 return result;
662}
edc032b5
BL
663
664/*
bf95cde2
MC
665 * create a verifier (*salt,*verifier,g and N are BIGNUMs). If *salt != NULL
666 * then the provided salt will be used. On successful exit *verifier will point
667 * to a newly allocated BIGNUM containing the verifier and (if a salt was not
668 * provided) *salt will be populated with a newly allocated BIGNUM containing a
669 * random salt.
670 * The caller is responsible for freeing the allocated *salt and *verifier
671 * BIGNUMS.
0f113f3e 672 */
8892ce77 673int SRP_create_verifier_BN(const char *user, const char *pass, BIGNUM **salt,
0f113f3e
MC
674 BIGNUM **verifier, const BIGNUM *N,
675 const BIGNUM *g)
676{
677 int result = 0;
678 BIGNUM *x = NULL;
679 BN_CTX *bn_ctx = BN_CTX_new();
680 unsigned char tmp2[MAX_LEN];
bf95cde2 681 BIGNUM *salttmp = NULL;
edc032b5 682
0f113f3e
MC
683 if ((user == NULL) ||
684 (pass == NULL) ||
685 (salt == NULL) ||
686 (verifier == NULL) || (N == NULL) || (g == NULL) || (bn_ctx == NULL))
687 goto err;
edc032b5 688
0f113f3e 689 if (*salt == NULL) {
266483d2
MC
690 if (RAND_bytes(tmp2, SRP_RANDOM_SALT_LEN) <= 0)
691 goto err;
edc032b5 692
bf95cde2
MC
693 salttmp = BN_bin2bn(tmp2, SRP_RANDOM_SALT_LEN, NULL);
694 } else {
695 salttmp = *salt;
0f113f3e 696 }
edc032b5 697
bf95cde2 698 x = SRP_Calc_x(salttmp, user, pass);
edc032b5 699
0f113f3e
MC
700 *verifier = BN_new();
701 if (*verifier == NULL)
702 goto err;
edc032b5 703
0f113f3e
MC
704 if (!BN_mod_exp(*verifier, g, x, N, bn_ctx)) {
705 BN_clear_free(*verifier);
706 goto err;
707 }
edc032b5 708
0f113f3e 709 result = 1;
bf95cde2 710 *salt = salttmp;
edc032b5 711
0f113f3e 712 err:
3bbd1d63 713 if (salt != NULL && *salt != salttmp)
bf95cde2 714 BN_clear_free(salttmp);
0f113f3e
MC
715 BN_clear_free(x);
716 BN_CTX_free(bn_ctx);
717 return result;
718}
edc032b5
BL
719
720#endif