Searched refs:sshcipher_ctx (Results 1 – 5 of 5) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | cipher.h | 51 struct sshcipher_ctx; 54 const char *cipher_warning_message(const struct sshcipher_ctx *); 58 int cipher_init(struct sshcipher_ctx **, const struct sshcipher *, 60 int cipher_crypt(struct sshcipher_ctx *, u_int, u_char *, const u_char *, 62 int cipher_get_length(struct sshcipher_ctx *, u_int *, u_int, 64 void cipher_free(struct sshcipher_ctx *); 72 u_int cipher_ctx_is_plaintext(struct sshcipher_ctx *); 74 int cipher_get_keyiv(struct sshcipher_ctx *, u_char *, size_t); 75 int cipher_set_keyiv(struct sshcipher_ctx *, const u_char *, size_t);
|
H A D | cipher.c | 58 struct sshcipher_ctx { struct 197 cipher_ctx_is_plaintext(struct sshcipher_ctx *cc) in cipher_ctx_is_plaintext() 237 cipher_warning_message(const struct sshcipher_ctx *cc) in cipher_warning_message() 246 cipher_init(struct sshcipher_ctx **ccp, const struct sshcipher *cipher, in cipher_init() 250 struct sshcipher_ctx *cc = NULL; in cipher_init() 345 cipher_crypt(struct sshcipher_ctx *cc, u_int seqnr, u_char *dest, in cipher_crypt() 408 cipher_get_length(struct sshcipher_ctx *cc, u_int *plenp, u_int seqnr, in cipher_get_length() 421 cipher_free(struct sshcipher_ctx *cc) in cipher_free() 438 cipher_get_keyiv(struct sshcipher_ctx *cc, u_char *iv, size_t len) in cipher_get_keyiv() 478 cipher_set_keyiv(struct sshcipher_ctx *cc, const u_char *iv, size_t len) in cipher_set_keyiv()
|
H A D | packet.c | 136 struct sshcipher_ctx *receive_context; 139 struct sshcipher_ctx *send_context; 868 struct sshcipher_ctx **ccp; in ssh_set_newkeys() 2275 struct sshcipher_ctx *cc; in newkeys_to_blob()
|
H A D | sshkey-xmss.c | 894 struct sshcipher_ctx *ciphercontext = NULL; in sshkey_xmss_encrypt_state() 985 struct sshcipher_ctx *ciphercontext = NULL; in sshkey_xmss_decrypt_state()
|
H A D | sshkey.c | 1540 struct sshcipher_ctx *cctx = NULL; in sshkey_shield_private() 1677 struct sshcipher_ctx *cctx = NULL; in sshkey_unshield_private() 2757 struct sshcipher_ctx *ciphercontext = NULL; in sshkey_private_to_blob2() 2957 struct sshcipher_ctx *ciphercontext = NULL; in private2_decrypt()
|