Home
last modified time | relevance | path

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

/netbsd/crypto/external/bsd/openssh/dist/
H A Dcipher.h51 struct sshcipher;
54 const struct sshcipher *cipher_by_name(const char *);
59 int cipher_init(struct sshcipher_ctx **, const struct sshcipher *,
66 u_int cipher_blocksize(const struct sshcipher *);
67 u_int cipher_keylen(const struct sshcipher *);
68 u_int cipher_seclen(const struct sshcipher *);
69 u_int cipher_authlen(const struct sshcipher *);
70 u_int cipher_ivlen(const struct sshcipher *);
71 u_int cipher_is_cbc(const struct sshcipher *);
H A Dcipher.c95 const struct sshcipher *cipher;
98 struct sshcipher { struct
150 const struct sshcipher *c; in cipher_alg_list()
189 cipher_keylen(const struct sshcipher *c) in cipher_keylen()
195 cipher_seclen(const struct sshcipher *c) in cipher_seclen()
203 cipher_authlen(const struct sshcipher *c) in cipher_authlen()
209 cipher_ivlen(const struct sshcipher *c) in cipher_ivlen()
220 cipher_is_cbc(const struct sshcipher *c) in cipher_is_cbc()
231 const struct sshcipher *
234 const struct sshcipher *c; in cipher_by_name()
[all …]
H A Dkex.h111 const struct sshcipher *cipher;
H A Dsshkey-xmss.c268 const struct sshcipher *cipher; in sshkey_xmss_init_enc_key()
892 const struct sshcipher *cipher; in sshkey_xmss_encrypt_state()
983 const struct sshcipher *cipher = NULL; in sshkey_xmss_decrypt_state()
H A Dsshkey.c1503 const struct sshcipher *cipher; in sshkey_shield_private()
1640 const struct sshcipher *cipher; in sshkey_unshield_private()
2721 const struct sshcipher *cipher; in sshkey_private_to_blob2()
2918 const struct sshcipher *cipher = NULL; in private2_decrypt()
H A Dpacket.c281 const struct sshcipher *none = cipher_by_name("none"); in ssh_packet_set_connection()