blob: 18d6647752c21f7dffeb719390b766df3ce9223d [file] [log] [blame]
licenses(["notice"])
java_test(
name = "AesGcmSivTest",
size = "medium",
srcs = ["AesGcmSivTest.java"],
data = [
"@wycheproof//testvectors:all",
],
# This is disabled because we haven't figured out how to run Conscrypt
# with Bazel.
tags = ["manual"],
deps = [
"//src/main/java/com/google/crypto/tink/aead/subtle:aes_gcm_siv",
"//src/main/java/com/google/crypto/tink/subtle:bytes",
"//src/main/java/com/google/crypto/tink/subtle:hex",
"//src/main/java/com/google/crypto/tink/subtle:random",
"//src/main/java/com/google/crypto/tink/testing:test_util",
"//src/main/java/com/google/crypto/tink/testing:wycheproof_test_util",
"@maven//:com_google_code_gson_gson",
"@maven//:junit_junit",
"@maven//:org_conscrypt_conscrypt_openjdk_uber",
],
)