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

  /external/openssl/crypto/evp/
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);
  /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/conscrypt/src/main/java/org/conscrypt/
NativeCrypto.java 329 public static native void EVP_CipherInit_ex(long ctx, long evpCipher, byte[] key, byte[] iv,
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]

Completed in 151 milliseconds