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

  /external/openssl/crypto/evp/
e_des.c 78 DES_ecb_encrypt((DES_cblock *)(in + i), (DES_cblock *)(out + i), ctx->cipher_data, ctx->encrypt);
87 DES_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data,
94 DES_ofb64_encrypt(in, out, (long)inl, ctx->cipher_data,
104 DES_ncbc_encrypt(in, out, (long)EVP_MAXCHUNK, ctx->cipher_data,
111 DES_ncbc_encrypt(in, out, (long)inl, ctx->cipher_data,
121 DES_cfb64_encrypt(in,out, (long)EVP_MAXCHUNK, ctx->cipher_data,
128 DES_cfb64_encrypt(in, out, (long)inl, ctx->cipher_data,
148 DES_cfb_encrypt(c,d,1,1,ctx->cipher_data,(DES_cblock *)ctx->iv,
167 DES_cfb_encrypt(in,out,8,(long)EVP_MAXCHUNK,ctx->cipher_data,
174 DES_cfb_encrypt(in,out,8,(long)inl,ctx->cipher_data,
    [all...]
e_idea.c 79 idea_ecb_encrypt(in + i, out + i, ctx->cipher_data);
105 if (enc) idea_set_encrypt_key(key,ctx->cipher_data);
111 idea_set_decrypt_key(&tmp,ctx->cipher_data);
e_seed.c 79 SEED_set_key(key, ctx->cipher_data);
evp_enc.c 180 ctx->cipher_data=OPENSSL_malloc(ctx->cipher->ctx_size);
181 if (!ctx->cipher_data)
189 ctx->cipher_data = NULL;
584 if (c->cipher_data)
585 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size);
587 if (c->cipher_data)
588 OPENSSL_free(c->cipher_data);
673 if (in->cipher_data && in->cipher->ctx_size)
675 out->cipher_data=OPENSSL_malloc(in->cipher->ctx_size);
676 if (!out->cipher_data)
    [all...]
e_aes.c 233 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
239 ret = aesni_set_decrypt_key(key, ctx->key_len*8, ctx->cipher_data);
246 ret = aesni_set_encrypt_key(key, ctx->key_len*8, ctx->cipher_data);
268 aesni_cbc_encrypt(in,out,len,ctx->cipher_data,ctx->iv,ctx->encrypt);
280 aesni_ecb_encrypt(in,out,len,ctx->cipher_data,ctx->encrypt);
308 EVP_AES_GCM_CTX *gctx = ctx->cipher_data;
349 EVP_AES_XTS_CTX *xctx = ctx->cipher_data;
392 EVP_AES_CCM_CTX *cctx = ctx->cipher_data;
532 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
642 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
    [all...]
e_camellia.c 114 ret=Camellia_set_key(key, ctx->key_len * 8, ctx->cipher_data);
e_rc4.c 77 #define data(ctx) ((EVP_RC4_KEY *)(ctx)->cipher_data)
evp_locl.h 74 cprefix##_ecb_encrypt(in + i, out + i, &((kstruct *)ctx->cipher_data)->ksched, ctx->encrypt);\
85 cprefix##_ofb##cbits##_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);\
91 cprefix##_ofb##cbits##_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num);\
100 cprefix##_cbc_encrypt(in, out, (long)EVP_MAXCHUNK, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, ctx->encrypt);\
106 cprefix##_cbc_encrypt(in, out, (long)inl, &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, ctx->encrypt);\
118 cprefix##_cfb##cbits##_encrypt(in, out, (long)((cbits==1) && !(ctx->flags & EVP_CIPH_FLAG_LENGTH_BITS) ?inl*8:inl), &((kstruct *)ctx->cipher_data)->ksched, ctx->iv, &ctx->num, ctx->encrypt);\
255 #define EVP_C_DATA(kstruct, ctx) ((kstruct *)(ctx)->cipher_data)
e_xcbc_d.c 82 #define data(ctx) ((DESX_CBC_KEY *)(ctx)->cipher_data)
e_rc2.c 83 #define data(ctx) ((EVP_RC2_KEY *)(ctx)->cipher_data)
e_rc4_hmac_md5.c 83 #define data(ctx) ((EVP_RC4_HMAC_MD5 *)(ctx)->cipher_data)
e_des3.c 85 #define data(ctx) ((DES_EDE_KEY *)(ctx)->cipher_data)
e_aes_cbc_hmac_sha1.c 115 #define data(ctx) ((EVP_AES_HMAC_SHA1 *)(ctx)->cipher_data)
evp.h 315 int ctx_size; /* how big ctx->cipher_data needs to be */
426 void *cipher_data; /* per EVP data */ member in struct:evp_cipher_ctx_st
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/cipher/
e_des.c 76 EVP_DES_KEY *dat = (EVP_DES_KEY *)ctx->cipher_data;
84 EVP_DES_KEY *dat = (EVP_DES_KEY *)ctx->cipher_data;
122 DES_EDE_KEY *dat = (DES_EDE_KEY*) ctx->cipher_data;
133 DES_EDE_KEY *dat = (DES_EDE_KEY*) ctx->cipher_data;
cipher.c 109 if (c->cipher_data) {
110 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size);
111 OPENSSL_free(c->cipher_data);
134 if (in->cipher_data && in->cipher->ctx_size) {
135 out->cipher_data = OPENSSL_malloc(in->cipher->ctx_size);
136 if (!out->cipher_data) {
140 memcpy(out->cipher_data, in->cipher_data, in->cipher->ctx_size);
174 ctx->cipher_data = OPENSSL_malloc(ctx->cipher->ctx_size);
175 if (!ctx->cipher_data) {
    [all...]
e_aes.c 226 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
271 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
288 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
304 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
338 EVP_AES_GCM_CTX *gctx = ctx->cipher_data;
367 EVP_AES_GCM_CTX *gctx = c->cipher_data;
392 EVP_AES_GCM_CTX *gctx = c->cipher_data;
485 EVP_AES_GCM_CTX *gctx_out = out->cipher_data;
511 EVP_AES_GCM_CTX *gctx = ctx->cipher_data;
668 EVP_AES_KEY *dat = (EVP_AES_KEY *)ctx->cipher_data;
    [all...]
e_rc4.c 73 RC4_KEY *rc4key = (RC4_KEY *)ctx->cipher_data;
81 RC4_KEY *rc4key = (RC4_KEY *)ctx->cipher_data;
e_rc2.c 369 EVP_RC2_KEY *rc2_key = (EVP_RC2_KEY *)ctx->cipher_data;
377 EVP_RC2_KEY *key = (EVP_RC2_KEY *)ctx->cipher_data;
393 EVP_RC2_KEY *key = (EVP_RC2_KEY *)ctx->cipher_data;
  /external/chromium_org/third_party/boringssl/src/include/openssl/
cipher.h 402 /* cipher_data points to the |cipher| specific state. */
403 void *cipher_data; member in struct:evp_cipher_ctx_st
  /external/openssl/crypto/engine/
eng_openssl.c 228 #define test(ctx) ((TEST_RC4_KEY *)(ctx)->cipher_data)
eng_cryptodev.c 368 struct dev_crypto_state *state = ctx->cipher_data;
421 struct dev_crypto_state *state = ctx->cipher_data;
463 struct dev_crypto_state *state = ctx->cipher_data;
    [all...]
  /external/openssl/crypto/des/
destest.c 164 static unsigned char cipher_data[NUM_TESTS][8]={ variable
418 if (memcmp(out,cipher_data[i],8) != 0)
421 i+1,pt(key_data[i]),pt(in),pt(cipher_data[i]),
  /external/openssl/include/openssl/
evp.h 315 int ctx_size; /* how big ctx->cipher_data needs to be */
426 void *cipher_data; /* per EVP data */ member in struct:evp_cipher_ctx_st
    [all...]

Completed in 1301 milliseconds