Searched refs:cipher_data (Results 1 – 4 of 4) sorted by relevance
86 OPENSSL_free(c->cipher_data); in EVP_CIPHER_CTX_cleanup()108 if (in->cipher_data && in->cipher->ctx_size) { in EVP_CIPHER_CTX_copy()109 out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size); in EVP_CIPHER_CTX_copy()110 if (!out->cipher_data) { in EVP_CIPHER_CTX_copy()115 OPENSSL_memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size); in EVP_CIPHER_CTX_copy()157 ctx->cipher_data = OPENSSL_malloc(ctx->cipher->ctx_size); in EVP_CipherInit_ex()158 if (!ctx->cipher_data) { in EVP_CipherInit_ex()164 ctx->cipher_data = NULL; in EVP_CipherInit_ex()
195 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data; in aes_init_key()252 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data; in aes_cbc_cipher()268 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data; in aes_ecb_cipher()284 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data; in aes_ctr_cipher()298 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data; in aes_ofb_cipher()353 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; in aes_gcm_init_key()384 EVP_AES_GCM_CTX *gctx = c->cipher_data; in aes_gcm_cleanup()408 EVP_AES_GCM_CTX *gctx = c->cipher_data; in aes_gcm_ctrl()500 EVP_AES_GCM_CTX *gctx_out = out->cipher_data; in aes_gcm_ctrl()520 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; in aes_gcm_cipher()[all …]
180 EVP_AES_XTS_CTX *xctx = ctx->cipher_data; in aes_xts_init_key()211 EVP_AES_XTS_CTX *xctx = ctx->cipher_data; in aes_xts_cipher()224 EVP_AES_XTS_CTX *xctx = c->cipher_data; in aes_xts_ctrl()227 EVP_AES_XTS_CTX *xctx_out = out->cipher_data; in aes_xts_ctrl()
484 void *cipher_data; member
Completed in 10 milliseconds