/external/chromium_org/third_party/openssl/openssl/crypto/pkcs12/ |
p12_crpt.c | 108 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de);
|
/external/openssl/crypto/pkcs12/ |
p12_crpt.c | 108 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de);
|
/external/chromium/crypto/ |
encryptor_openssl.cc | 97 if (!EVP_CipherInit_ex(ctx.get(), cipher, NULL,
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
p5_crpt.c | 134 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de))
|
p5_crpt2.c | 216 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de)) 308 rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de);
|
e_rc2.c | 186 if(i > 0 && !EVP_CipherInit_ex(c, NULL, NULL, NULL, iv, -1))
|
evp_enc.c | 100 return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc); 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, 292 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1); 304 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
|
bio_enc.c | 301 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL, 423 EVP_CipherInit_ex(&(ctx->cipher),c,NULL, k,i,e);
|
/external/openssl/crypto/evp/ |
p5_crpt.c | 134 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de))
|
p5_crpt2.c | 216 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de)) 308 rv = EVP_CipherInit_ex(ctx, NULL, NULL, key, NULL, en_de);
|
e_rc2.c | 186 if(i > 0 && !EVP_CipherInit_ex(c, NULL, NULL, NULL, iv, -1))
|
evp_enc.c | 100 return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc); 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, 292 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1); 304 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
|
bio_enc.c | 301 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL, 423 EVP_CipherInit_ex(&(ctx->cipher),c,NULL, k,i,e);
|
/external/chromium_org/crypto/ |
encryptor_openssl.cc | 107 if (!EVP_CipherInit_ex(ctx.get(), cipher, NULL,
|
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLCipher.java | 281 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, null, null, 284 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), 0, encodedKey, iv, encrypting); 286 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, encodedKey, iv, 391 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), 0, null, null, encrypting);
|
NativeCrypto.java | 297 public static native void EVP_CipherInit_ex(long ctx, long evpCipher, byte[] key, byte[] iv, [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/ |
bio_ber.c | 342 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL, 461 EVP_CipherInit_ex(&(ctx->cipher),c,NULL,k,i,e);
|
pk7_doit.c | 344 if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1)<=0) 348 if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, 1) <= 0) 570 if (EVP_CipherInit_ex(evp_ctx,evp_cipher,NULL,NULL,NULL,0) <= 0) 605 if (EVP_CipherInit_ex(evp_ctx,NULL,NULL,ek,NULL,0) <= 0)
|
/external/openssl/crypto/pkcs7/ |
bio_ber.c | 342 EVP_CipherInit_ex(&(ctx->cipher),NULL,NULL,NULL,NULL, 461 EVP_CipherInit_ex(&(ctx->cipher),c,NULL,k,i,e);
|
pk7_doit.c | 344 if (EVP_CipherInit_ex(ctx, evp_cipher, NULL, NULL, NULL, 1)<=0) 348 if (EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, 1) <= 0) 570 if (EVP_CipherInit_ex(evp_ctx,evp_cipher,NULL,NULL,NULL,0) <= 0) 605 if (EVP_CipherInit_ex(evp_ctx,NULL,NULL,ek,NULL,0) <= 0)
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
p5_pbev2.c | 128 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0))
|
/external/openssl/crypto/asn1/ |
p5_pbev2.c | 128 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0))
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
enc.c | 600 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc)) 611 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc))
|
/external/openssl/apps/ |
enc.c | 600 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc)) 611 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc))
|
/external/chromium_org/content/renderer/webcrypto/ |
webcrypto_impl_openssl.cc | 73 // OpenSSL constants for EVP_CipherInit_ex(), do not change 118 if (!EVP_CipherInit_ex(context.get(),
|