Home | History | Annotate | Download | only in openssh

Lines Matching full:salt

970 pw_encrypt(const char *password, const char *crypt_scheme, const char *salt)
977 return xstrdup(crypt(password, salt));
985 const char *salt)
996 if ((crypted = pw_encrypt(password, crypt_scheme, salt)) == NULL) {
1004 debug3("%s: salt = %s", __func__, salt);
1034 char *crypt_scheme, *salt;
1045 salt = packet_get_string(NULL);
1056 pctx->s = jpake_password_to_secret(authctxt, crypt_scheme, salt);
1058 bzero(salt, strlen(salt));
1060 xfree(salt);