diff options
Diffstat (limited to 'internal/contentenc')
-rw-r--r-- | internal/contentenc/content_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/contentenc/content_test.go b/internal/contentenc/content_test.go index e4d4a3e..998e9b8 100644 --- a/internal/contentenc/content_test.go +++ b/internal/contentenc/content_test.go @@ -23,7 +23,7 @@ func TestSplitRange(t *testing.T) { testRange{6654, 8945}) key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendOpenSSL, DefaultIVBits, true, false) + cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) f := New(cc, DefaultBS, false) for _, r := range ranges { @@ -51,7 +51,7 @@ func TestCiphertextRange(t *testing.T) { testRange{6654, 8945}) key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendOpenSSL, DefaultIVBits, true, false) + cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) f := New(cc, DefaultBS, false) for _, r := range ranges { @@ -74,7 +74,7 @@ func TestCiphertextRange(t *testing.T) { func TestBlockNo(t *testing.T) { key := make([]byte, cryptocore.KeyLen) - cc := cryptocore.New(key, cryptocore.BackendOpenSSL, DefaultIVBits, true, false) + cc := cryptocore.New(key, cryptocore.BackendGoGCM, DefaultIVBits, true, false) f := New(cc, DefaultBS, false) b := f.CipherOffToBlockNo(788) |