Home
last modified time | relevance | path

Searched refs:cipher_keylen (Results 1 – 6 of 6) 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.c1662 if (cipher_keylen(cipher) + cipher_ivlen(cipher) > in sshkey_shield_private()
1681 if ((r = cipher_init(&cctx, cipher, keyiv, cipher_keylen(cipher), in sshkey_shield_private()
1682 keyiv + cipher_keylen(cipher), cipher_ivlen(cipher), 1)) != 0) in sshkey_shield_private()
1798 if (cipher_keylen(cipher) + cipher_ivlen(cipher) > in sshkey_unshield_private()
1815 if ((r = cipher_init(&cctx, cipher, keyiv, cipher_keylen(cipher), in sshkey_unshield_private()
1816 keyiv + cipher_keylen(cipher), cipher_ivlen(cipher), 0)) != 0) in sshkey_unshield_private()
2865 keylen = cipher_keylen(cipher); in sshkey_private_to_blob2()
3101 keylen = cipher_keylen(cipher); in private2_decrypt()
H A Dssh_namespace.h207 #define cipher_keylen Fssh_cipher_keylen macro
H A Dkex.c822 enc->key_len = cipher_keylen(enc->cipher); in choose_enc()
H A Dpacket.c2551 if (keylen != cipher_keylen(enc->cipher) || in newkeys_from_blob()