HomeSort by relevance Sort by last modified time
    Searched refs:cipher_data (Results 1 - 11 of 11) sorted by null

  /external/boringssl/src/crypto/cipher_extra/
e_rc4.c 67 RC4_KEY *rc4key = (RC4_KEY *)ctx->cipher_data;
75 RC4_KEY *rc4key = (RC4_KEY *)ctx->cipher_data;
e_rc2.c 387 EVP_RC2_KEY *rc2_key = (EVP_RC2_KEY *)ctx->cipher_data;
395 EVP_RC2_KEY *key = (EVP_RC2_KEY *)ctx->cipher_data;
411 EVP_RC2_KEY *key = (EVP_RC2_KEY *)ctx->cipher_data;
  /external/boringssl/src/decrepit/cfb/
cfb.c 31 EVP_CFB_CTX *cfb_ctx = ctx->cipher_data;
44 EVP_CFB_CTX *cfb_ctx = ctx->cipher_data;
  /external/boringssl/src/crypto/fipsmodule/cipher/
e_des.c 75 EVP_DES_KEY *dat = (EVP_DES_KEY *)ctx->cipher_data;
83 EVP_DES_KEY *dat = (EVP_DES_KEY *)ctx->cipher_data;
110 EVP_DES_KEY *dat = (EVP_DES_KEY *) ctx->cipher_data;
140 DES_EDE_KEY *dat = (DES_EDE_KEY*) ctx->cipher_data;
151 DES_EDE_KEY *dat = (DES_EDE_KEY*) ctx->cipher_data;
174 DES_EDE_KEY *dat = (DES_EDE_KEY *) ctx->cipher_data;
202 DES_EDE_KEY *dat = (DES_EDE_KEY *) ctx->cipher_data;
cipher.c 86 OPENSSL_free(c->cipher_data);
108 if (in->cipher_data && in->cipher->ctx_size) {
109 out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size);
110 if (!out->cipher_data) {
115 OPENSSL_memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size);
157 ctx->cipher_data = OPENSSL_malloc(ctx->cipher->ctx_size);
158 if (!ctx->cipher_data) {
164 ctx->cipher_data = NULL;
e_aes.c 101 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
178 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
194 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
210 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
224 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
299 char *ptr = ctx->cipher_data;
748 aes_hw_ecb_encrypt(in, out, len, ctx->cipher_data, ctx->encrypt);
    [all...]
  /external/boringssl/src/decrepit/xts/
xts.c 160 EVP_AES_XTS_CTX *xctx = ctx->cipher_data;
191 EVP_AES_XTS_CTX *xctx = ctx->cipher_data;
204 EVP_AES_XTS_CTX *xctx = c->cipher_data;
207 EVP_AES_XTS_CTX *xctx_out = out->cipher_data;
  /external/boringssl/src/decrepit/cast/
cast.c 417 CAST_KEY *cast_key = ctx->cipher_data;
424 CAST_KEY *cast_key = ctx->cipher_data;
439 CAST_KEY *cast_key = ctx->cipher_data;
  /external/boringssl/src/decrepit/blowfish/
blowfish.c 559 BF_KEY *bf_key = ctx->cipher_data;
566 BF_KEY *bf_key = ctx->cipher_data;
581 BF_KEY *bf_key = ctx->cipher_data;
588 BF_KEY *bf_key = ctx->cipher_data;
  /external/boringssl/src/include/openssl/
cipher.h 501 // cipher_data points to the |cipher| specific state.
502 void *cipher_data; member in struct:evp_cipher_ctx_st
  /external/openssh/
cipher.c 692 #define EVP_X_STATE(evp) (evp)->cipher_data

Completed in 1372 milliseconds