Home
last modified time | relevance | path

Searched refs:evpAeadRef (Results 1 – 1 of 1) sorted by relevance

/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc3465 static jint NativeCrypto_EVP_AEAD_max_overhead(JNIEnv* env, jclass, jlong evpAeadRef) { in NativeCrypto_EVP_AEAD_max_overhead() argument
3467 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in NativeCrypto_EVP_AEAD_max_overhead()
3478 static jint NativeCrypto_EVP_AEAD_nonce_length(JNIEnv* env, jclass, jlong evpAeadRef) { in NativeCrypto_EVP_AEAD_nonce_length() argument
3480 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in NativeCrypto_EVP_AEAD_nonce_length()
3496 static jint evp_aead_ctx_op(JNIEnv* env, jlong evpAeadRef, jbyteArray keyArray, jint tagLen, in evp_aead_ctx_op() argument
3500 const EVP_AEAD* evpAead = reinterpret_cast<const EVP_AEAD*>(evpAeadRef); in evp_aead_ctx_op()
3585 static jint NativeCrypto_EVP_AEAD_CTX_seal(JNIEnv* env, jclass, jlong evpAeadRef, in NativeCrypto_EVP_AEAD_CTX_seal() argument
3591 return evp_aead_ctx_op(env, evpAeadRef, keyArray, tagLen, outArray, outOffset, nonceArray, in NativeCrypto_EVP_AEAD_CTX_seal()
3595 static jint NativeCrypto_EVP_AEAD_CTX_open(JNIEnv* env, jclass, jlong evpAeadRef, in NativeCrypto_EVP_AEAD_CTX_open() argument
3601 return evp_aead_ctx_op(env, evpAeadRef, keyArray, tagLen, outArray, outOffset, nonceArray, in NativeCrypto_EVP_AEAD_CTX_open()