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 #define bn_pack4(a1,a2,a3,a4) 0x##a1##a2##a3##a4##ul
69 #define bn_pack4(a1,a2,a3,a4) 0x##a3##a4##ul, 0x##a1##a2##ul
72 #define bn_pack4(a1,a2,a3,a4) 0x##a4##u,0x##a3##u,0x##a2##u,0x##a1##u
78 static BIGNUM
*srp_Calc_k(BIGNUM
*N
, BIGNUM
*g
)
80 /* k = SHA1(N | PAD(g)) -- tls-srp draft 8 */
82 unsigned char digest
[SHA_DIGEST_LENGTH
];
86 int longN
= BN_num_bytes(N
);
88 if ((tmp
= OPENSSL_malloc(longN
)) == NULL
)
92 EVP_MD_CTX_init(&ctxt
);
93 EVP_DigestInit_ex(&ctxt
, EVP_sha1(), NULL
);
94 EVP_DigestUpdate(&ctxt
, tmp
, longN
);
96 memset(tmp
, 0, longN
);
97 longg
= BN_bn2bin(g
,tmp
) ;
98 /* use the zeros behind to pad on left */
99 EVP_DigestUpdate(&ctxt
, tmp
+ longg
, longN
-longg
);
100 EVP_DigestUpdate(&ctxt
, tmp
, longg
);
103 EVP_DigestFinal_ex(&ctxt
, digest
, NULL
);
104 EVP_MD_CTX_cleanup(&ctxt
);
105 return BN_bin2bn(digest
, sizeof(digest
), NULL
);
108 BIGNUM
*SRP_Calc_u(BIGNUM
*A
, BIGNUM
*B
, BIGNUM
*N
)
110 /* k = SHA1(PAD(A) || PAD(B) ) -- tls-srp draft 8 */
113 unsigned char cu
[SHA_DIGEST_LENGTH
];
117 if ((A
== NULL
) ||(B
== NULL
) || (N
== NULL
))
120 longN
= BN_num_bytes(N
);
122 if ((cAB
= OPENSSL_malloc(2*longN
)) == NULL
)
125 memset(cAB
, 0, longN
);
127 EVP_MD_CTX_init(&ctxt
);
128 EVP_DigestInit_ex(&ctxt
, EVP_sha1(), NULL
);
129 EVP_DigestUpdate(&ctxt
, cAB
+ BN_bn2bin(A
,cAB
+longN
), longN
);
130 EVP_DigestUpdate(&ctxt
, cAB
+ BN_bn2bin(B
,cAB
+longN
), longN
);
132 EVP_DigestFinal_ex(&ctxt
, cu
, NULL
);
133 EVP_MD_CTX_cleanup(&ctxt
);
135 if (!(u
= BN_bin2bn(cu
, sizeof(cu
), NULL
)))
143 BIGNUM
*SRP_Calc_server_key(BIGNUM
*A
, BIGNUM
*v
, BIGNUM
*u
, BIGNUM
*b
, BIGNUM
*N
)
145 BIGNUM
*tmp
= NULL
, *S
= NULL
;
148 if (u
== NULL
|| A
== NULL
|| v
== NULL
|| b
== NULL
|| N
== NULL
)
151 if ((bn_ctx
= BN_CTX_new()) == NULL
||
152 (tmp
= BN_new()) == NULL
||
153 (S
= BN_new()) == NULL
)
156 /* S = (A*v**u) ** b */
158 if (!BN_mod_exp(tmp
,v
,u
,N
,bn_ctx
))
160 if (!BN_mod_mul(tmp
,A
,tmp
,N
,bn_ctx
))
162 if (!BN_mod_exp(S
,tmp
,b
,N
,bn_ctx
))
170 BIGNUM
*SRP_Calc_B(BIGNUM
*b
, BIGNUM
*N
, BIGNUM
*g
, BIGNUM
*v
)
172 BIGNUM
*kv
= NULL
, *gb
= NULL
;
173 BIGNUM
*B
= NULL
, *k
= NULL
;
176 if (b
== NULL
|| N
== NULL
|| g
== NULL
|| v
== NULL
||
177 (bn_ctx
= BN_CTX_new()) == NULL
)
180 if ( (kv
= BN_new()) == NULL
||
181 (gb
= BN_new()) == NULL
||
182 (B
= BN_new())== NULL
)
187 if (!BN_mod_exp(gb
,g
,b
,N
,bn_ctx
) ||
188 !(k
= srp_Calc_k(N
,g
)) ||
189 !BN_mod_mul(kv
,v
,k
,N
,bn_ctx
) ||
190 !BN_mod_add(B
,gb
,kv
,N
,bn_ctx
))
203 BIGNUM
*SRP_Calc_x(BIGNUM
*s
, const char *user
, const char *pass
)
205 unsigned char dig
[SHA_DIGEST_LENGTH
];
214 if ((cs
= OPENSSL_malloc(BN_num_bytes(s
))) == NULL
)
217 EVP_MD_CTX_init(&ctxt
);
218 EVP_DigestInit_ex(&ctxt
, EVP_sha1(), NULL
);
219 EVP_DigestUpdate(&ctxt
, user
, strlen(user
));
220 EVP_DigestUpdate(&ctxt
, ":", 1);
221 EVP_DigestUpdate(&ctxt
, pass
, strlen(pass
));
222 EVP_DigestFinal_ex(&ctxt
, dig
, NULL
);
224 EVP_DigestInit_ex(&ctxt
, EVP_sha1(), NULL
);
226 EVP_DigestUpdate(&ctxt
, cs
, BN_num_bytes(s
));
228 EVP_DigestUpdate(&ctxt
, dig
, sizeof(dig
));
229 EVP_DigestFinal_ex(&ctxt
, dig
, NULL
);
230 EVP_MD_CTX_cleanup(&ctxt
);
232 return BN_bin2bn(dig
, sizeof(dig
), NULL
);
235 BIGNUM
*SRP_Calc_A(BIGNUM
*a
, BIGNUM
*N
, BIGNUM
*g
)
240 if (a
== NULL
|| N
== NULL
|| g
== NULL
||
241 (bn_ctx
= BN_CTX_new()) == NULL
)
244 if ((A
= BN_new()) != NULL
&&
245 !BN_mod_exp(A
,g
,a
,N
,bn_ctx
))
255 BIGNUM
*SRP_Calc_client_key(BIGNUM
*N
, BIGNUM
*B
, BIGNUM
*g
, BIGNUM
*x
, BIGNUM
*a
, BIGNUM
*u
)
257 BIGNUM
*tmp
= NULL
, *tmp2
= NULL
, *tmp3
= NULL
, *k
= NULL
, *K
= NULL
;
260 if (u
== NULL
|| B
== NULL
|| N
== NULL
|| g
== NULL
|| x
== NULL
|| a
== NULL
||
261 (bn_ctx
= BN_CTX_new()) == NULL
)
264 if ((tmp
= BN_new()) == NULL
||
265 (tmp2
= BN_new())== NULL
||
266 (tmp3
= BN_new())== NULL
||
267 (K
= BN_new()) == NULL
)
270 if (!BN_mod_exp(tmp
,g
,x
,N
,bn_ctx
))
272 if (!(k
= srp_Calc_k(N
,g
)))
274 if (!BN_mod_mul(tmp2
,tmp
,k
,N
,bn_ctx
))
276 if (!BN_mod_sub(tmp
,B
,tmp2
,N
,bn_ctx
))
279 if (!BN_mod_mul(tmp3
,u
,x
,N
,bn_ctx
))
281 if (!BN_mod_add(tmp2
,a
,tmp3
,N
,bn_ctx
))
283 if (!BN_mod_exp(K
,tmp
,tmp2
,N
,bn_ctx
))
295 int SRP_Verify_B_mod_N(BIGNUM
*B
, BIGNUM
*N
)
301 if (B
== NULL
|| N
== NULL
||
302 (bn_ctx
= BN_CTX_new()) == NULL
)
305 if ((r
= BN_new()) == NULL
)
307 /* Checks if B % N == 0 */
308 if (!BN_nnmod(r
,B
,N
,bn_ctx
))
310 ret
= !BN_is_zero(r
);
317 int SRP_Verify_A_mod_N(BIGNUM
*A
, BIGNUM
*N
)
319 /* Checks if A % N == 0 */
320 return SRP_Verify_B_mod_N(A
,N
) ;
324 /* Check if G and N are kwown parameters.
325 The values have been generated from the ietf-tls-srp draft version 8
327 char *SRP_check_known_gN_param(BIGNUM
*g
, BIGNUM
*N
)
330 if ((g
== NULL
) || (N
== NULL
))
336 for(i
= 0; i
< KNOWN_GN_NUMBER
; i
++)
338 if (BN_cmp(knowngN
[i
].g
, g
) == 0 && BN_cmp(knowngN
[i
].N
, N
) == 0)
339 return knowngN
[i
].id
;
344 SRP_gN
*SRP_get_default_gN(const char *id
)
350 for(i
= 0; i
< KNOWN_GN_NUMBER
; i
++)
352 if (strcmp(knowngN
[i
].id
, id
)==0)