Searched refs:tagLengthInBytes (Results 1 - 2 of 2) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLCipher.java1000 private int tagLengthInBytes; field in class:OpenSSLCipher.EVP_AEAD
1057 "Tag length must be a multiple of 8; was " + tagLengthInBytes);
1060 tagLengthInBytes = tagLenBits / 8;
1141 tagLengthInBytes, output, outputOffset, iv, buf, 0, bufCount, aad);
1144 tagLengthInBytes, output, outputOffset, iv, buf, 0, bufCount, aad);
1188 AlgorithmParameterSpec spec = Platform.toGCMParameterSpec(tagLengthInBytes * 8, iv);
H A DNativeCrypto.java292 static native int EVP_AEAD_CTX_seal(long evpAead, byte[] key, int tagLengthInBytes, byte[] out, argument
296 static native int EVP_AEAD_CTX_open(long evpAead, byte[] key, int tagLengthInBytes, byte[] out, argument

Completed in 72 milliseconds