• Home
  • Raw
  • Download

Lines Matching defs:ctx

70 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx) {  in EVP_CIPHER_CTX_init()
75 EVP_CIPHER_CTX *ctx = OPENSSL_malloc(sizeof(EVP_CIPHER_CTX)); in EVP_CIPHER_CTX_new() local
95 void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_free()
131 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex()
228 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex()
233 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex()
238 int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_EncryptUpdate()
307 int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len) { in EVP_EncryptFinal_ex()
351 int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_DecryptUpdate()
408 int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *out_len) { in EVP_DecryptFinal_ex()
467 int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in, in EVP_Cipher()
472 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len, in EVP_CipherUpdate()
481 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len) { in EVP_CipherFinal_ex()
489 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_cipher()
493 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_nid()
497 unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_block_size()
501 unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_key_length()
505 unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_iv_length()
509 void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_get_app_data()
513 void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data) { in EVP_CIPHER_CTX_set_app_data()
517 uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_flags()
521 uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_mode()
525 int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command, int arg, void *ptr) { in EVP_CIPHER_CTX_ctrl()
546 int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad) { in EVP_CIPHER_CTX_set_padding()
591 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit()
599 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit()
604 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit()