Home
last modified time | relevance | path

Searched refs:cipher_data (Results 1 – 4 of 4) sorted by relevance

/third_party/ulib/uboringssl/crypto/fipsmodule/cipher/
A Dcipher.c86 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()
A De_aes.c195 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 …]
/third_party/ulib/uboringssl/decrepit/xts/
A Dxts.c180 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()
/third_party/ulib/uboringssl/include/openssl/
A Dcipher.h484 void *cipher_data; member

Completed in 10 milliseconds