aboutsummaryrefslogtreecommitdiff
path: root/internal/stupidgcm/aegis_test.go
diff options
context:
space:
mode:
authorFrank Denis2025-03-12 00:32:04 +0100
committerJakob Unterwurzacher2025-03-12 20:43:23 +0100
commit3e852eb354f99fb95b399c68d950298b33ed88ab (patch)
tree6218e3b655e5ebf778c026b9dee5b1fe3f306950 /internal/stupidgcm/aegis_test.go
parente9d6fb4b3f16d04fa56a66acad46eafad4f8aba1 (diff)
Do what @rfjakob asked me to do
Diffstat (limited to 'internal/stupidgcm/aegis_test.go')
-rw-r--r--internal/stupidgcm/aegis_test.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/internal/stupidgcm/aegis_test.go b/internal/stupidgcm/aegis_test.go
deleted file mode 100644
index 36ef763..0000000
--- a/internal/stupidgcm/aegis_test.go
+++ /dev/null
@@ -1,16 +0,0 @@
-//go:build !without_aegis && cgo
-// +build !without_aegis,cgo
-
-package stupidgcm
-
-import "testing"
-
-func TestStupidAegis(t *testing.T) {
- if BuiltWithoutAegis {
- t.Skip("Aegis support has been disabled at compile-time")
- }
- key := randBytes(16)
- c := NewAegis(key)
-
- testCiphers(t, c, c)
-}