Home | History | Annotate | Download | only in openssh

Lines Matching full:salt

3048 	u_char salt[SALT_LEN];
3091 arc4random_buf(salt, SALT_LEN);
3093 salt, SALT_LEN, key, keylen + ivlen, rounds) < 0) {
3097 if ((r = sshbuf_put_string(kdf, salt, SALT_LEN)) != 0 ||
3179 explicit_bzero(salt, sizeof(salt));
3209 u_char *key = NULL, *salt = NULL, *dp, pad, last;
3319 if ((r = sshbuf_get_string(kdf, &salt, &slen)) != 0 ||
3322 if (bcrypt_pbkdf(passphrase, strlen(passphrase), salt, slen,
3392 if (salt != NULL) {
3393 explicit_bzero(salt, slen);
3394 free(salt);