Searched defs:evpAead (Results 1 – 5 of 5) sorted by relevance
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLAeadCipher.java | 84 long evpAead; field in OpenSSLAeadCipher
|
D | NativeCrypto.java | 346 static native int EVP_AEAD_max_overhead(long evpAead); in EVP_AEAD_max_overhead() 348 static native int EVP_AEAD_nonce_length(long evpAead); in EVP_AEAD_nonce_length() 350 static native int EVP_AEAD_CTX_seal(long evpAead, byte[] key, int tagLengthInBytes, byte[] out, in EVP_AEAD_CTX_seal() 354 static native int EVP_AEAD_CTX_seal_buf(long evpAead, byte[] key, int tagLengthInBytes, in EVP_AEAD_CTX_seal_buf() 358 static native int EVP_AEAD_CTX_open(long evpAead, byte[] key, int tagLengthInBytes, byte[] out, in EVP_AEAD_CTX_open() 362 static native int EVP_AEAD_CTX_open_buf(long evpAead, byte[] key, int tagLengthInBytes, in EVP_AEAD_CTX_open_buf()
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLAeadCipher.java | 80 long evpAead; field in OpenSSLAeadCipher
|
D | NativeCrypto.java | 335 static native int EVP_AEAD_max_overhead(long evpAead); in EVP_AEAD_max_overhead() 337 static native int EVP_AEAD_nonce_length(long evpAead); in EVP_AEAD_nonce_length() 339 static native int EVP_AEAD_CTX_seal(long evpAead, byte[] key, int tagLengthInBytes, byte[] out, in EVP_AEAD_CTX_seal() 343 …static native int EVP_AEAD_CTX_seal_buf(long evpAead, byte[] key, int tagLengthInBytes, ByteBuffer… in EVP_AEAD_CTX_seal_buf() 347 static native int EVP_AEAD_CTX_open(long evpAead, byte[] key, int tagLengthInBytes, byte[] out, in EVP_AEAD_CTX_open() 351 …static native int EVP_AEAD_CTX_open_buf(long evpAead, byte[] key, int tagLengthInBytes, ByteBuffer… in EVP_AEAD_CTX_open_buf()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 3548 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in NativeCrypto_EVP_AEAD_max_overhead() local 3561 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in NativeCrypto_EVP_AEAD_nonce_length() local 3581 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in evp_aead_ctx_op_common() local 3638 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in evp_aead_ctx_op() local 3683 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in evp_aead_ctx_op_buf() local
|