Lines Matching defs:ctx
90 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_init()
95 EVP_CIPHER_CTX *ctx = OPENSSL_malloc(sizeof(EVP_CIPHER_CTX)); in EVP_CIPHER_CTX_new() local
115 void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_free()
147 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
244 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
249 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
254 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_EncryptUpdate()
323 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len) { in EVP_EncryptFinal_ex()
367 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_DecryptUpdate()
424 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *out_len) { in EVP_DecryptFinal_ex()
483 int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, in EVP_Cipher()
488 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_CipherUpdate()
497 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len) { in EVP_CipherFinal_ex()
505 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_cipher()
509 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_nid()
513 unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_block_size()
517 unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_key_length()
521 unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_iv_length()
525 void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_get_app_data()
529 void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data) { in EVP_CIPHER_CTX_set_app_data()
533 uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_flags()
537 uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_mode()
541 int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command, int arg, void *ptr) { in EVP_CIPHER_CTX_ctrl()
562 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad) { in EVP_CIPHER_CTX_set_padding()
607 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
615 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit()
620 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit()