Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dcipher.h66 u_int cipher_keylen(const struct sshcipher *);
H A Dcipher.c150 cipher_keylen(const struct sshcipher *c) in cipher_keylen() function
160 return cipher_keylen(c); in cipher_seclen()
H A Dsshkey.c1650 if (cipher_keylen(cipher) + cipher_ivlen(cipher) > in sshkey_shield_private()
1669 if ((r = cipher_init(&cctx, cipher, keyiv, cipher_keylen(cipher), in sshkey_shield_private()
1670 keyiv + cipher_keylen(cipher), cipher_ivlen(cipher), 1)) != 0) in sshkey_shield_private()
1786 if (cipher_keylen(cipher) + cipher_ivlen(cipher) > in sshkey_unshield_private()
1803 if ((r = cipher_init(&cctx, cipher, keyiv, cipher_keylen(cipher), in sshkey_unshield_private()
1804 keyiv + cipher_keylen(cipher), cipher_ivlen(cipher), 0)) != 0) in sshkey_unshield_private()
2849 keylen = cipher_keylen(cipher); in sshkey_private_to_blob2()
3085 keylen = cipher_keylen(cipher); in private2_decrypt()
H A Dssh_namespace.h206 #define cipher_keylen Fssh_cipher_keylen macro
H A Dkex.c817 enc->key_len = cipher_keylen(enc->cipher); in choose_enc()