Home
last modified time | relevance | path

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

/external/openssh/
Dcipher.h65 struct sshcipher;
69 const struct sshcipher *cipher_by_name(const char *);
70 const struct sshcipher *cipher_by_number(int);
76 int cipher_init(struct sshcipher_ctx **, const struct sshcipher *,
84 const struct sshcipher *, const char *, int);
85 u_int cipher_blocksize(const struct sshcipher *);
86 u_int cipher_keylen(const struct sshcipher *);
87 u_int cipher_seclen(const struct sshcipher *);
88 u_int cipher_authlen(const struct sshcipher *);
89 u_int cipher_ivlen(const struct sshcipher *);
[all …]
Dcipher.c66 const struct sshcipher *cipher;
69 struct sshcipher { struct
89 static const struct sshcipher ciphers[] = { argument
151 const struct sshcipher *c; in cipher_alg_list()
173 cipher_blocksize(const struct sshcipher *c) in cipher_blocksize()
179 cipher_keylen(const struct sshcipher *c) in cipher_keylen()
185 cipher_seclen(const struct sshcipher *c) in cipher_seclen()
193 cipher_authlen(const struct sshcipher *c) in cipher_authlen()
199 cipher_ivlen(const struct sshcipher *c) in cipher_ivlen()
210 cipher_get_number(const struct sshcipher *c) in cipher_get_number()
[all …]
Dkex.h109 const struct sshcipher *cipher;
Dsshkey.c3049 const struct sshcipher *cipher; in sshkey_private_to_blob2()
3193 const struct sshcipher *cipher = NULL; in sshkey_parse_private2()
3422 const struct sshcipher *cipher; in sshkey_private_rsa1_to_blob()
3669 const struct sshcipher *cipher; in sshkey_parse_private_rsa1()
Dpacket.c293 const struct sshcipher *none = cipher_by_name("none"); in ssh_packet_set_connection()
818 const struct sshcipher *cipher = cipher_by_number(number); in ssh_packet_set_encryption_key()