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

  /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/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);
evp.h 601 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLCipher.java 259 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, null, null,
262 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), 0, encodedKey, iv, encrypting);
264 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, encodedKey, iv,
369 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), 0, null, null, encrypting);
NativeCrypto.java 291 public static native void EVP_CipherInit_ex(long ctx, long evpCipher, byte[] key, byte[] iv,
    [all...]
  /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/openssl/crypto/asn1/
p5_pbev2.c 128 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0))
  /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/openssl/ssl/
t1_enc.c 538 printf("EVP_CipherInit_ex(dd,c,key=,iv=,which)\n");
548 EVP_CipherInit_ex(dd,c,NULL,key,NULL,(which & SSL3_CC_WRITE));
552 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE));
    [all...]
s3_enc.c 376 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE));
  /external/wpa_supplicant_8/src/crypto/
crypto_openssl.c 150 !EVP_CipherInit_ex(&ctx, EVP_rc4(), NULL, NULL, NULL, 1) ||
152 !EVP_CipherInit_ex(&ctx, NULL, NULL, key, NULL, 1))
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
NativeCryptoTest.java     [all...]
  /external/openssl/include/openssl/
evp.h 601 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
    [all...]
  /libcore/luni/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp     [all...]

Completed in 392 milliseconds