/external/openssl/crypto/evp/ |
D | evp_enc.c | 90 return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc); in EVP_CipherInit() 93 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, in EVP_CipherInit_ex() function 262 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1); in EVP_EncryptInit_ex() 274 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0); in EVP_DecryptInit_ex()
|
D | p5_crpt2.c | 214 EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de); in PKCS5_v2_PBE_keyivgen() 281 EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de); in PKCS5_v2_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 | p5_crpt.c | 127 EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de); in PKCS5_PBE_keyivgen()
|
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 | 558 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/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 | 337 if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1)<=0) in PKCS7_dataInit() 341 if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, 1) <= 0) in PKCS7_dataInit() 567 if (EVP_CipherInit_ex(evp_ctx,evp_cipher,NULL,NULL,NULL,0) <= 0) in PKCS7_dataDecode() 584 if (EVP_CipherInit_ex(evp_ctx,NULL,NULL,ek,NULL,0) <= 0) in PKCS7_dataDecode()
|
/external/openssl/apps/ |
D | enc.c | 591 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc)) in MAIN() 602 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc)) in MAIN()
|
/external/openssl/crypto/asn1/ |
D | p5_pbev2.c | 130 EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0);
|
/external/openssl/ssl/ |
D | s3_enc.c | 376 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE)); in ssl3_change_cipher_state()
|
D | t1_enc.c | 531 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE)); in tls1_change_cipher_state()
|
/external/openssl/include/openssl/ |
D | evp.h | 558 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
|