Searched refs:sshcipher_ctx (Results 1 – 4 of 4) sorted by relevance
/external/openssh/ |
D | cipher.h | 66 struct sshcipher_ctx { struct 76 typedef struct sshcipher_ctx CipherContext; argument 83 const char *cipher_warning_message(const struct sshcipher_ctx *); 86 int cipher_init(struct sshcipher_ctx *, const struct sshcipher *, 88 int cipher_crypt(struct sshcipher_ctx *, u_int, u_char *, const u_char *, 90 int cipher_get_length(struct sshcipher_ctx *, u_int *, u_int, 92 int cipher_cleanup(struct sshcipher_ctx *); 93 int cipher_set_key_string(struct sshcipher_ctx *, const struct sshcipher *, 103 int cipher_get_keyiv(struct sshcipher_ctx *, u_char *, u_int); 104 int cipher_set_keyiv(struct sshcipher_ctx *, const u_char *); [all …]
|
D | cipher.c | 285 cipher_warning_message(const struct sshcipher_ctx *cc) in cipher_warning_message() 296 cipher_init(struct sshcipher_ctx *cc, const struct sshcipher *cipher, in cipher_init() 391 cipher_crypt(struct sshcipher_ctx *cc, u_int seqnr, u_char *dest, in cipher_crypt() 454 cipher_get_length(struct sshcipher_ctx *cc, u_int *plenp, u_int seqnr, in cipher_get_length() 467 cipher_cleanup(struct sshcipher_ctx *cc) in cipher_cleanup() 487 cipher_set_key_string(struct sshcipher_ctx *cc, const struct sshcipher *cipher, in cipher_set_key_string() 510 cipher_get_keyiv_len(const struct sshcipher_ctx *cc) in cipher_get_keyiv_len() 529 cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, u_int len) in cipher_get_keyiv() 586 cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv) in cipher_set_keyiv() 631 cipher_get_keycontext(const struct sshcipher_ctx *cc, u_char *dat) in cipher_get_keycontext() [all …]
|
D | packet.c | 125 struct sshcipher_ctx receive_context; 128 struct sshcipher_ctx send_context; 922 struct sshcipher_ctx *cc; in ssh_set_newkeys() 2365 struct sshcipher_ctx *cc; in newkeys_to_blob()
|
D | sshkey.c | 3053 struct sshcipher_ctx ciphercontext; in sshkey_private_to_blob2() 3207 struct sshcipher_ctx ciphercontext; in sshkey_parse_private2() 3422 struct sshcipher_ctx ciphercontext; in sshkey_private_rsa1_to_blob() 3677 struct sshcipher_ctx ciphercontext; in sshkey_parse_private_rsa1()
|