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

  /external/boringssl/src/crypto/cipher/
cipher.c 141 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
168 OPENSSL_PUT_ERROR(CIPHER, EVP_CipherInit_ex, ERR_R_MALLOC_FAILURE);
181 OPENSSL_PUT_ERROR(CIPHER, EVP_CipherInit_ex, CIPHER_R_INITIALIZATION_ERROR);
186 OPENSSL_PUT_ERROR(CIPHER, EVP_CipherInit_ex, CIPHER_R_NO_CIPHER_SET);
240 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
245 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 0);
611 return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, enc);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLCipher.java 517 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, null, null, encrypting);
519 NativeCrypto.EVP_CipherInit_ex(cipherCtx, 0, encodedKey, iv, isEncrypting());
521 NativeCrypto.EVP_CipherInit_ex(cipherCtx, cipherType, encodedKey, iv, encrypting);
625 NativeCrypto.EVP_CipherInit_ex(cipherCtx, 0, encodedKey, iv, isEncrypting());
    [all...]
NativeCrypto.java 290 public static native void EVP_CipherInit_ex(NativeRef.EVP_CIPHER_CTX ctx, long evpCipher,
    [all...]
  /external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java     [all...]

Completed in 52 milliseconds