diff options
Diffstat (limited to 'internal/stupidgcm/stupidchacha_test.go')
-rw-r--r-- | internal/stupidgcm/stupidchacha_test.go | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/internal/stupidgcm/stupidchacha_test.go b/internal/stupidgcm/stupidchacha_test.go deleted file mode 100644 index 513b68f..0000000 --- a/internal/stupidgcm/stupidchacha_test.go +++ /dev/null @@ -1,20 +0,0 @@ -// +build !without_openssl - -package stupidgcm - -import ( - "testing" - - "golang.org/x/crypto/chacha20poly1305" -) - -func TestStupidChacha20poly1305(t *testing.T) { - key := randBytes(32) - c := newChacha20poly1305(key) - ref, err := chacha20poly1305.New(key) - if err != nil { - t.Fatal(err) - } - - testCiphers(t, c, ref) -} |