Lines Matching refs:decrypted
1714 private2_check_padding(struct sshbuf *decrypted)
1721 while (sshbuf_len(decrypted)) {
1722 if ((r = sshbuf_get_u8(decrypted, &pad)) != 0)
3008 struct sshbuf *kdf = NULL, *decrypted = NULL;
3020 if ((decrypted = sshbuf_new()) == NULL) {
3096 if ((r = sshbuf_reserve(decrypted, encrypted_len, &dp)) != 0 ||
3116 if ((r = sshbuf_get_u32(decrypted, &check1)) != 0 ||
3117 (r = sshbuf_get_u32(decrypted, &check2)) != 0)
3124 *decryptedp = decrypted;
3125 decrypted = NULL;
3143 sshbuf_free(decrypted);
3153 struct sshbuf *decoded = NULL, *decrypted = NULL;
3164 &decrypted, &pubkey)) != 0)
3174 if ((r = sshkey_private_deserialize(decrypted, &k)) != 0 ||
3175 (r = sshbuf_get_cstring(decrypted, &comment, NULL)) != 0)
3179 if ((r = private2_check_padding(decrypted)) != 0)
3201 sshbuf_free(decrypted);