Home | History | Annotate | Download | only in openssh

Lines Matching defs:decrypted

3206 	struct sshbuf *kdf = NULL, *decrypted = NULL;
3220 (decrypted = sshbuf_new()) == NULL) {
3330 if ((r = sshbuf_reserve(decrypted, encrypted_len, &dp)) != 0 ||
3350 if ((r = sshbuf_get_u32(decrypted, &check1)) != 0 ||
3351 (r = sshbuf_get_u32(decrypted, &check2)) != 0)
3359 if ((r = sshkey_private_deserialize(decrypted, &k)) != 0 ||
3360 (r = sshbuf_get_cstring(decrypted, &comment, NULL)) != 0)
3365 while (sshbuf_len(decrypted)) {
3366 if ((r = sshbuf_get_u8(decrypted, &pad)) != 0)
3403 sshbuf_free(decrypted);
3674 struct sshbuf *decrypted = NULL, *copy = NULL;
3701 (decrypted = sshbuf_new()) == NULL) {
3726 /* Initialize space for decrypted data. */
3727 if ((r = sshbuf_reserve(decrypted, sshbuf_len(copy), &cp)) != 0)
3742 if ((r = sshbuf_get_u16(decrypted, &check1)) != 0 ||
3743 (r = sshbuf_get_u16(decrypted, &check2)) != 0)
3751 if ((r = sshbuf_get_bignum1(decrypted, prv->rsa->d)) != 0 ||
3752 (r = sshbuf_get_bignum1(decrypted, prv->rsa->iqmp)) != 0 ||
3753 (r = sshbuf_get_bignum1(decrypted, prv->rsa->q)) != 0 ||
3754 (r = sshbuf_get_bignum1(decrypted, prv->rsa->p)) != 0)
3781 if (decrypted != NULL)
3782 sshbuf_free(decrypted);