Home | History | Annotate | Download | only in dist

Lines Matching defs:encrypted

1666 	fprintf(stderr, "%s: encrypted\n", __func__);
1785 fprintf(stderr, "%s: encrypted\n", __func__);
2792 struct sshbuf *encoded = NULL, *encrypted = NULL, *kdf = NULL;
2808 (encrypted = sshbuf_new()) == NULL) {
2848 /* set up the buffer that will be encrypted */
2852 if ((r = sshbuf_put_u32(encrypted, check)) != 0 ||
2853 (r = sshbuf_put_u32(encrypted, check)) != 0)
2857 if ((r = sshkey_private_serialize(prv, encrypted)) != 0 ||
2858 (r = sshbuf_put_cstring(encrypted, comment)) != 0)
2863 while (sshbuf_len(encrypted) % blocksize) {
2864 if ((r = sshbuf_put_u8(encrypted, ++i & 0xff)) != 0)
2869 if ((r = sshbuf_put_u32(encoded, sshbuf_len(encrypted))) != 0)
2874 sshbuf_len(encrypted) + authlen, &cp)) != 0)
2877 sshbuf_ptr(encrypted), sshbuf_len(encrypted), 0, authlen)) != 0)
2894 sshbuf_free(encrypted);
3041 /* check size of encrypted key blob */