aboutsummaryrefslogtreecommitdiff
path: root/internal/cryptocore/cryptocore_go1.5_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cryptocore/cryptocore_go1.5_test.go')
-rw-r--r--internal/cryptocore/cryptocore_go1.5_test.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/internal/cryptocore/cryptocore_go1.5_test.go b/internal/cryptocore/cryptocore_go1.5_test.go
deleted file mode 100644
index f9d38e9..0000000
--- a/internal/cryptocore/cryptocore_go1.5_test.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// +build go1.5
-// = go 1.5 or higher
-
-package cryptocore
-
-import (
- "testing"
-)
-
-func TestCryptoCoreNewGo15(t *testing.T) {
- key := make([]byte, 32)
- c := New(key, BackendGoGCM, 128)
- if c.IVLen != 16 {
- t.Fail()
- }
-}