Home | History | Annotate | Download | only in srp

Lines Matching full:salt

356  * string(username):base64(v):base64(salt):int(index)
522 create a verifier (*salt,*verifier,g and N are in base64)
524 char *SRP_create_verifier(const char *user, const char *pass, char **salt,
537 (salt == NULL)||
559 if (*salt == NULL)
567 if (!(len = t_fromb64(tmp2, *salt)))
581 if (*salt == NULL)
591 *salt = tmp_salt;
606 create a verifier (*salt,*verifier,g and N are BIGNUMs)
608 int SRP_create_verifier_BN(const char *user, const char *pass, BIGNUM **salt, BIGNUM **verifier, BIGNUM *N, BIGNUM *g)
617 (salt == NULL)||
627 if (*salt == NULL)
631 *salt = BN_bin2bn(tmp2,SRP_RANDOM_SALT_LEN,NULL);
634 x = SRP_Calc_x(*salt,user,pass);