summaryrefslogtreecommitdiff
path: root/internal/stupidgcm/stupidxchacha_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/stupidgcm/stupidxchacha_test.go')
-rw-r--r--internal/stupidgcm/stupidxchacha_test.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/internal/stupidgcm/stupidxchacha_test.go b/internal/stupidgcm/stupidxchacha_test.go
deleted file mode 100644
index fdea8b5..0000000
--- a/internal/stupidgcm/stupidxchacha_test.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// +build !without_openssl
-
-package stupidgcm
-
-import (
- "testing"
-
- "golang.org/x/crypto/chacha20poly1305"
-)
-
-func TestStupidXchacha20poly1305(t *testing.T) {
- key := randBytes(32)
- c := NewXchacha20poly1305(key)
- ref, err := chacha20poly1305.NewX(key)
- if err != nil {
- t.Fatal(err)
- }
-
- testCiphers(t, c, ref)
-}