Home
last modified time | relevance | path

Searched refs:ciphercontext (Results 1 – 1 of 1) sorted by relevance

/freebsd/crypto/openssh/
H A Dsshkey.c2841 struct sshcipher_ctx *ciphercontext = NULL; in sshkey_private_to_blob2() local
2887 if ((r = cipher_init(&ciphercontext, cipher, key, keylen, in sshkey_private_to_blob2()
2928 if ((r = cipher_crypt(ciphercontext, 0, cp, in sshkey_private_to_blob2()
2947 cipher_free(ciphercontext); in sshkey_private_to_blob2()
3040 struct sshcipher_ctx *ciphercontext = NULL; in private2_decrypt() local
3128 (r = cipher_init(&ciphercontext, cipher, key, keylen, in private2_decrypt()
3131 if ((r = cipher_crypt(ciphercontext, 0, dp, sshbuf_ptr(decoded), in private2_decrypt()
3161 cipher_free(ciphercontext); in private2_decrypt()