Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dcipher.h50 struct sshcipher;
53 const struct sshcipher *cipher_by_name(const char *);
58 int cipher_init(struct sshcipher_ctx **, const struct sshcipher *,
65 u_int cipher_blocksize(const struct sshcipher *);
66 u_int cipher_keylen(const struct sshcipher *);
67 u_int cipher_seclen(const struct sshcipher *);
68 u_int cipher_authlen(const struct sshcipher *);
69 u_int cipher_ivlen(const struct sshcipher *);
70 u_int cipher_is_cbc(const struct sshcipher *);
71 u_int cipher_is_internal(const struct sshcipher *);
H A Dcipher.c63 const struct sshcipher *cipher;
66 struct sshcipher { struct
85 static const struct sshcipher ciphers[] = { argument
119 const struct sshcipher *c; in cipher_alg_list()
144 cipher_blocksize(const struct sshcipher *c) in cipher_blocksize()
150 cipher_keylen(const struct sshcipher *c) in cipher_keylen()
156 cipher_seclen(const struct sshcipher *c) in cipher_seclen()
164 cipher_authlen(const struct sshcipher *c) in cipher_authlen()
170 cipher_ivlen(const struct sshcipher *c) in cipher_ivlen()
181 cipher_is_cbc(const struct sshcipher *c) in cipher_is_cbc()
[all …]
H A Dkex.h126 const struct sshcipher *cipher;
H A Dsshkey.c1650 const struct sshcipher *cipher; in sshkey_shield_private()
1784 const struct sshcipher *cipher; in sshkey_unshield_private()
2842 const struct sshcipher *cipher; in sshkey_private_to_blob2()
3036 const struct sshcipher *cipher = NULL; in private2_decrypt()
H A Dpacket.c304 const struct sshcipher *none = cipher_by_name("none"); in ssh_packet_set_connection()