/external/openssl/crypto/evp/ |
D | evp_enc.c | 100 return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc); in EVP_CipherInit() 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, in EVP_CipherInit_ex() function 292 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1); in EVP_EncryptInit_ex() 304 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0); in EVP_DecryptInit_ex()
|
D | p5_crpt2.c | 216 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de)) in PKCS5_v2_PBE_keyivgen() 308 rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de); in PKCS5_v2_PBKDF2_keyivgen()
|
D | p5_crpt.c | 134 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de)) in PKCS5_PBE_keyivgen()
|
D | bio_enc.c | 301 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL, in enc_ctrl() 423 EVP_CipherInit_ex(&(ctx->cipher),c,NULL, k,i,e); in BIO_set_cipher()
|
D | e_rc2.c | 186 if(i > 0 && !EVP_CipherInit_ex(c, NULL, NULL, NULL, iv, -1)) in rc2_get_asn1_type_and_iv()
|
D | evp.h | 602 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
|
/external/openssl/crypto/pkcs12/ |
D | p12_crpt.c | 108 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de); in PKCS12_PBE_keyivgen()
|
/external/chromium/crypto/ |
D | encryptor_openssl.cc | 97 if (!EVP_CipherInit_ex(ctx.get(), cipher, NULL, in Crypt()
|
/external/openssl/crypto/pkcs7/ |
D | bio_ber.c | 342 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL, in ber_ctrl() 461 EVP_CipherInit_ex(&(ctx->cipher),c,NULL,k,i,e); in BIO_set_cipher()
|
D | pk7_doit.c | 344 if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1)<=0) in PKCS7_dataInit() 348 if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, 1) <= 0) in PKCS7_dataInit() 570 if (EVP_CipherInit_ex(evp_ctx,evp_cipher,NULL,NULL,NULL,0) <= 0) in PKCS7_dataDecode() 605 if (EVP_CipherInit_ex(evp_ctx,NULL,NULL,ek,NULL,0) <= 0) in PKCS7_dataDecode()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_openssl.c | 149 !EVP_CipherInit_ex(&ctx, EVP_rc4(), NULL, NULL, NULL, 1) || in rc4_skip() 151 !EVP_CipherInit_ex(&ctx, NULL, NULL, key, NULL, 1)) in rc4_skip()
|
/external/openssl/crypto/asn1/ |
D | p5_pbev2.c | 128 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0))
|
/external/openssl/apps/ |
D | enc.c | 600 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc)) in MAIN() 611 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc)) in MAIN()
|
/external/openssl/ssl/ |
D | t1_enc.c | 548 EVP_CipherInit_ex(dd,c,NULL,key,NULL,(which & SSL3_CC_WRITE)); in tls1_change_cipher_state() 552 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE)); in tls1_change_cipher_state()
|
D | s3_enc.c | 376 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE)); in ssl3_change_cipher_state()
|
/external/openssl/include/openssl/ |
D | evp.h | 602 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
|