Lines Matching refs:verifier
22 BIGNUM **verifier, const BIGNUM *N,
26 BIGNUM **verifier, const BIGNUM *N, const BIGNUM *g);
28 char **verifier, const char *N, const char *g,
31 char **verifier, const char *N, const char *g);
41 The SRP_create_verifier_BN_ex() function creates an SRP password verifier from
50 On successful exit I<*verifier> will point to a newly allocated BIGNUM containing
51 the verifier and (if a salt was not provided) I<*salt> will be populated with a
54 The caller is responsible for freeing the allocated I<*salt> and I<*verifier>
64 The caller is responsible for freeing the allocated I<*salt> and I<*verifier>
93 Generate and store a 8192 bit password verifier (error handling
106 BIGNUM *salt = NULL, *verifier = NULL;
107 SRP_create_verifier_BN_ex(username, password, &salt, &verifier, gN->N, gN->g,
112 SRP_user_pwd_set0_sv(pwd, salt, verifier);