Lines Matching +full:b +full:- +full:side
15 - SRP authentication primitives
22 hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
25 /* server side .... */
27 const BIGNUM *b, const BIGNUM *N);
28 BIGNUM *SRP_Calc_B_ex(const BIGNUM *b, const BIGNUM *N, const BIGNUM *g,
30 BIGNUM *SRP_Calc_B(const BIGNUM *b, const BIGNUM *N, const BIGNUM *g,
33 BIGNUM *SRP_Calc_u_ex(const BIGNUM *A, const BIGNUM *B, const BIGNUM *N,
35 BIGNUM *SRP_Calc_u(const BIGNUM *A, const BIGNUM *B, const BIGNUM *N);
37 /* client side .... */
38 BIGNUM *SRP_Calc_client_key_ex(const BIGNUM *N, const BIGNUM *B, const BIGNUM *g,
41 BIGNUM *SRP_Calc_client_key(const BIGNUM *N, const BIGNUM *B, const BIGNUM *g,
54 parameters and keys used by SRP as defined in RFC2945. The server key and I<B>
55 and I<u> parameters are used on the server side and are calculated via
57 SRP_Calc_u(). The client key and B<x> and B<A> parameters are used on the
58 client side and are calculated via the functions SRP_Calc_client_key_ex(),
78 L<openssl-srp(1)>,
93 Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.