Home
last modified time | relevance | path

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

/external/openssh/
Dcipher.h65 struct sshcipher;
72 const struct sshcipher *cipher;
75 typedef struct sshcipher Cipher;
79 const struct sshcipher *cipher_by_name(const char *);
80 const struct sshcipher *cipher_by_number(int);
86 int cipher_init(struct sshcipher_ctx *, const struct sshcipher *,
93 int cipher_set_key_string(struct sshcipher_ctx *, const struct sshcipher *,
95 u_int cipher_blocksize(const struct sshcipher *);
96 u_int cipher_keylen(const struct sshcipher *);
97 u_int cipher_seclen(const struct sshcipher *);
[all …]
Dcipher.c60 struct sshcipher { struct
80 static const struct sshcipher ciphers[] = { argument
134 const struct sshcipher *c; in cipher_alg_list()
156 cipher_blocksize(const struct sshcipher *c) in cipher_blocksize()
162 cipher_keylen(const struct sshcipher *c) in cipher_keylen()
168 cipher_seclen(const struct sshcipher *c) in cipher_seclen()
176 cipher_authlen(const struct sshcipher *c) in cipher_authlen()
182 cipher_ivlen(const struct sshcipher *c) in cipher_ivlen()
193 cipher_get_number(const struct sshcipher *c) in cipher_get_number()
199 cipher_is_cbc(const struct sshcipher *c) in cipher_is_cbc()
[all …]
Dkex.h103 const struct sshcipher *cipher;
Dsshkey.c3054 const struct sshcipher *cipher; in sshkey_private_to_blob2()
3200 const struct sshcipher *cipher = NULL; in sshkey_parse_private2()
3423 const struct sshcipher *cipher; in sshkey_private_rsa1_to_blob()
3678 const struct sshcipher *cipher; in sshkey_parse_private_rsa1()
Dpacket.c272 const struct sshcipher *none = cipher_by_name("none"); in ssh_packet_set_connection()
796 const struct sshcipher *cipher = cipher_by_number(number); in ssh_packet_set_encryption_key()