Lines Matching refs:encrypted
1673 fprintf(stderr, "%s: encrypted\n", __func__);
1792 fprintf(stderr, "%s: encrypted\n", __func__);
2812 struct sshbuf *encoded = NULL, *encrypted = NULL, *kdf = NULL;
2828 (encrypted = sshbuf_new()) == NULL) {
2868 /* set up the buffer that will be encrypted */
2872 if ((r = sshbuf_put_u32(encrypted, check)) != 0 ||
2873 (r = sshbuf_put_u32(encrypted, check)) != 0)
2877 if ((r = sshkey_private_serialize_opt(prv, encrypted,
2879 (r = sshbuf_put_cstring(encrypted, comment)) != 0)
2884 while (sshbuf_len(encrypted) % blocksize) {
2885 if ((r = sshbuf_put_u8(encrypted, ++i & 0xff)) != 0)
2890 if ((r = sshbuf_put_u32(encoded, sshbuf_len(encrypted))) != 0)
2895 sshbuf_len(encrypted) + authlen, &cp)) != 0)
2898 sshbuf_ptr(encrypted), sshbuf_len(encrypted), 0, authlen)) != 0)
2915 sshbuf_free(encrypted);
3062 /* check size of encrypted key blob */