1 /* crypto/srp/srp_lib.c */
2 /* Written by Christophe Renou (christophe.renou@edelweb.fr) with
3 * the precious help of Peter Sylvester (peter.sylvester@edelweb.fr)
4 * for the EdelKey project and contributed to the OpenSSL project 2004.
6 /* ====================================================================
7 * Copyright (c) 2004 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
59 #ifndef OPENSSL_NO_SRP
62 #include <openssl/srp.h>
63 #include <openssl/evp.h>
66 # if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
67 # define bn_pack4(a1,a2,a3,a4) ((a1##UI64<<48)|(a2##UI64<<32)|(a3##UI64<<16)|a4##UI64)
68 # elif defined(__arch64__)
69 # define bn_pack4(a1,a2,a3,a4) ((a1##UL<<48)|(a2##UL<<32)|(a3##UL<<16)|a4##UL)
71 # define bn_pack4(a1,a2,a3,a4) ((a1##ULL<<48)|(a2##ULL<<32)|(a3##ULL<<16)|a4##ULL)
74 # define bn_pack4(a1,a2,a3,a4) ((a3##UL<<16)|a4##UL), ((a1##UL<<16)|a2##UL)
76 # error "unsupported BN_BYTES"
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
];
90 int longN
= BN_num_bytes(N
);
92 if (BN_ucmp(g
, N
) >= 0)
95 if ((tmp
= OPENSSL_malloc(longN
)) == NULL
)
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
);
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 */
120 unsigned char cu
[SHA_DIGEST_LENGTH
];
124 if ((A
== NULL
) ||(B
== NULL
) || (N
== NULL
))
127 if (BN_ucmp(A
, N
) >= 0 || BN_ucmp(B
, N
) >= 0)
130 longN
= BN_num_bytes(N
);
132 if ((cAB
= OPENSSL_malloc(2*longN
)) == 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
);
142 EVP_DigestFinal_ex(&ctxt
, cu
, NULL
);
143 EVP_MD_CTX_cleanup(&ctxt
);
145 if (!(u
= BN_bin2bn(cu
, sizeof(cu
), NULL
)))
153 BIGNUM
*SRP_Calc_server_key(BIGNUM
*A
, BIGNUM
*v
, BIGNUM
*u
, BIGNUM
*b
, BIGNUM
*N
)
155 BIGNUM
*tmp
= NULL
, *S
= NULL
;
158 if (u
== NULL
|| A
== NULL
|| v
== NULL
|| b
== NULL
|| N
== NULL
)
161 if ((bn_ctx
= BN_CTX_new()) == NULL
||
162 (tmp
= BN_new()) == NULL
||
163 (S
= BN_new()) == NULL
)
166 /* S = (A*v**u) ** b */
168 if (!BN_mod_exp(tmp
,v
,u
,N
,bn_ctx
))
170 if (!BN_mod_mul(tmp
,A
,tmp
,N
,bn_ctx
))
172 if (!BN_mod_exp(S
,tmp
,b
,N
,bn_ctx
))
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
;
186 if (b
== NULL
|| N
== NULL
|| g
== NULL
|| v
== NULL
||
187 (bn_ctx
= BN_CTX_new()) == NULL
)
190 if ( (kv
= BN_new()) == NULL
||
191 (gb
= BN_new()) == NULL
||
192 (B
= BN_new())== NULL
)
197 if (!BN_mod_exp(gb
,g
,b
,N
,bn_ctx
) ||
198 !(k
= srp_Calc_k(N
,g
)) ||
199 !BN_mod_mul(kv
,v
,k
,N
,bn_ctx
) ||
200 !BN_mod_add(B
,gb
,kv
,N
,bn_ctx
))
213 BIGNUM
*SRP_Calc_x(BIGNUM
*s
, const char *user
, const char *pass
)
215 unsigned char dig
[SHA_DIGEST_LENGTH
];
224 if ((cs
= OPENSSL_malloc(BN_num_bytes(s
))) == NULL
)
227 EVP_MD_CTX_init(&ctxt
);
228 EVP_DigestInit_ex(&ctxt
, EVP_sha1(), NULL
);
229 EVP_DigestUpdate(&ctxt
, user
, strlen(user
));
230 EVP_DigestUpdate(&ctxt
, ":", 1);
231 EVP_DigestUpdate(&ctxt
, pass
, strlen(pass
));
232 EVP_DigestFinal_ex(&ctxt
, dig
, NULL
);
234 EVP_DigestInit_ex(&ctxt
, EVP_sha1(), NULL
);
236 EVP_DigestUpdate(&ctxt
, cs
, BN_num_bytes(s
));
238 EVP_DigestUpdate(&ctxt
, dig
, sizeof(dig
));
239 EVP_DigestFinal_ex(&ctxt
, dig
, NULL
);
240 EVP_MD_CTX_cleanup(&ctxt
);
242 return BN_bin2bn(dig
, sizeof(dig
), NULL
);
245 BIGNUM
*SRP_Calc_A(BIGNUM
*a
, BIGNUM
*N
, BIGNUM
*g
)
250 if (a
== NULL
|| N
== NULL
|| g
== NULL
||
251 (bn_ctx
= BN_CTX_new()) == NULL
)
254 if ((A
= BN_new()) != NULL
&&
255 !BN_mod_exp(A
,g
,a
,N
,bn_ctx
))
265 BIGNUM
*SRP_Calc_client_key(BIGNUM
*N
, BIGNUM
*B
, BIGNUM
*g
, BIGNUM
*x
, BIGNUM
*a
, BIGNUM
*u
)
267 BIGNUM
*tmp
= NULL
, *tmp2
= NULL
, *tmp3
= NULL
, *k
= NULL
, *K
= NULL
;
270 if (u
== NULL
|| B
== NULL
|| N
== NULL
|| g
== NULL
|| x
== NULL
|| a
== NULL
||
271 (bn_ctx
= BN_CTX_new()) == NULL
)
274 if ((tmp
= BN_new()) == NULL
||
275 (tmp2
= BN_new())== NULL
||
276 (tmp3
= BN_new())== NULL
||
277 (K
= BN_new()) == NULL
)
280 if (!BN_mod_exp(tmp
,g
,x
,N
,bn_ctx
))
282 if (!(k
= srp_Calc_k(N
,g
)))
284 if (!BN_mod_mul(tmp2
,tmp
,k
,N
,bn_ctx
))
286 if (!BN_mod_sub(tmp
,B
,tmp2
,N
,bn_ctx
))
289 if (!BN_mod_mul(tmp3
,u
,x
,N
,bn_ctx
))
291 if (!BN_mod_add(tmp2
,a
,tmp3
,N
,bn_ctx
))
293 if (!BN_mod_exp(K
,tmp
,tmp2
,N
,bn_ctx
))
305 int SRP_Verify_B_mod_N(BIGNUM
*B
, BIGNUM
*N
)
311 if (B
== NULL
|| N
== NULL
||
312 (bn_ctx
= BN_CTX_new()) == NULL
)
315 if ((r
= BN_new()) == NULL
)
317 /* Checks if B % N == 0 */
318 if (!BN_nnmod(r
,B
,N
,bn_ctx
))
320 ret
= !BN_is_zero(r
);
327 int SRP_Verify_A_mod_N(BIGNUM
*A
, BIGNUM
*N
)
329 /* Checks if A % N == 0 */
330 return SRP_Verify_B_mod_N(A
,N
) ;
334 /* Check if G and N are kwown parameters.
335 The values have been generated from the ietf-tls-srp draft version 8
337 char *SRP_check_known_gN_param(BIGNUM
*g
, BIGNUM
*N
)
340 if ((g
== NULL
) || (N
== NULL
))
346 for(i
= 0; i
< KNOWN_GN_NUMBER
; i
++)
348 if (BN_cmp(knowngN
[i
].g
, g
) == 0 && BN_cmp(knowngN
[i
].N
, N
) == 0)
349 return knowngN
[i
].id
;
354 SRP_gN
*SRP_get_default_gN(const char *id
)
360 for(i
= 0; i
< KNOWN_GN_NUMBER
; i
++)
362 if (strcmp(knowngN
[i
].id
, id
)==0)