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

1 2

  /external/openssl/crypto/pkcs12/
p12_crpt.c 108 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de);
  /external/chromium_org/third_party/boringssl/src/crypto/cipher/
cipher.c 101 return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, enc);
150 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
176 OPENSSL_PUT_ERROR(CIPHER, EVP_CipherInit_ex, ERR_R_MALLOC_FAILURE);
188 OPENSSL_PUT_ERROR(CIPHER, EVP_CipherInit_ex, CIPHER_R_INITIALIZATION_ERROR);
193 OPENSSL_PUT_ERROR(CIPHER, EVP_CipherInit_ex, CIPHER_R_NO_CIPHER_SET);
247 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
252 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
  /external/chromium_org/content/child/webcrypto/openssl/
aes_cbc_openssl.cc 77 if (!EVP_CipherInit_ex(context.get(),
aes_ctr_openssl.cc 59 if (!EVP_CipherInit_ex(context.get(),
  /external/openssl/crypto/evp/
p5_crpt.c 134 if (!EVP_CipherInit_ex(cctx, cipher, NULL, key, iv, en_de))
p5_crpt2.c 238 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, en_de))
330 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 101 return EVP_CipherInit_ex(ctx,cipher,NULL,key,iv,enc);
104 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl,
293 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
305 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/cms/
cms_enc.c 116 if (EVP_CipherInit_ex(ctx, ciph, NULL, NULL, NULL, enc) <= 0)
196 if (EVP_CipherInit_ex(ctx, NULL, NULL, ec->key, piv, enc) <= 0)
cms_pwri.c 379 if (!EVP_CipherInit_ex(&kekctx, kekcipher, NULL, NULL, NULL, en_de))
  /external/chromium_org/crypto/
encryptor_openssl.cc 106 if (!EVP_CipherInit_ex(ctx.get(), cipher, NULL,
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipher.java 287 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, null, null,
290 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), 0, encodedKey, iv, encrypting);
292 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), cipherType, encodedKey, iv,
401 NativeCrypto.EVP_CipherInit_ex(cipherCtx.getContext(), 0, encodedKey, iv, encrypting);
NativeCrypto.java 329 public static native void EVP_CipherInit_ex(long ctx, long evpCipher, byte[] key, byte[] iv,
    [all...]
  /external/openssl/crypto/asn1/
p5_pbev2.c 128 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0))
  /external/chromium_org/third_party/boringssl/src/crypto/pkcs8/
p5_pbev2.c 151 if (!EVP_CipherInit_ex(&ctx, cipher, NULL, NULL, iv, 0))
pkcs8.c 253 ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, is_encrypt);
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
cipher.h 133 /* EVP_CipherInit_ex configures |ctx| for a fresh encryption (or decryption, if
140 OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
145 /* EVP_EncryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to one. */
150 /* EVP_DecryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to zero. */
  /external/openssl/crypto/pkcs7/
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)
575 if (EVP_CipherInit_ex(evp_ctx,evp_cipher,NULL,NULL,NULL,0) <= 0)
610 if (EVP_CipherInit_ex(evp_ctx,NULL,NULL,ek,NULL,0) <= 0)
  /external/openssl/apps/
enc.c 614 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc))
625 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc))
  /external/openssl/ssl/
t1_enc.c 543 printf("EVP_CipherInit_ex(dd,c,key=,iv=,which)\n");
553 EVP_CipherInit_ex(dd,c,NULL,key,NULL,(which & SSL3_CC_WRITE));
557 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 152 !EVP_CipherInit_ex(&ctx, EVP_rc4(), NULL, NULL, NULL, 1) ||
154 !EVP_CipherInit_ex(&ctx, NULL, NULL, key, NULL, 1))
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
s3_enc.c 297 EVP_CipherInit_ex(dd,c,NULL,key,iv,(which & SSL3_CC_WRITE));

Completed in 324 milliseconds

1 2