]> Cypherpunks.ru repositories - gogost.git/blobdiff - src/cypherpunks.ru/gogost/gost28147/cipher_test.go
Forbid any later GNU GPL versions autousage
[gogost.git] / src / cypherpunks.ru / gogost / gost28147 / cipher_test.go
index a2d84adb9a4337c03eb8fb3c31261911236aa631..21e544745ced2db2b486c25b0d3eff3acd8475b8 100644 (file)
@@ -1,10 +1,9 @@
 // GoGOST -- Pure Go GOST cryptographic functions library
-// Copyright (C) 2015-2018 Sergey Matveev <stargrave@stargrave.org>
+// Copyright (C) 2015-2019 Sergey Matveev <stargrave@stargrave.org>
 //
 // This program is free software: you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
+// the Free Software Foundation, version 3 of the License.
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -23,8 +22,7 @@ import (
 )
 
 func TestCipherInterface(t *testing.T) {
-       var key [32]byte
-       var _ cipher.Block = NewCipher(key, SboxDefault)
+       var _ cipher.Block = NewCipher(make([]byte, KeySize), SboxDefault)
 }
 
 func BenchmarkCipher(b *testing.B) {
@@ -33,7 +31,7 @@ func BenchmarkCipher(b *testing.B) {
        dst := make([]byte, BlockSize)
        src := make([]byte, BlockSize)
        rand.Read(src)
-       c := NewCipher(key, SboxDefault)
+       c := NewCipher(key[:], SboxDefault)
        b.ResetTimer()
        for i := 0; i < b.N; i++ {
                c.Encrypt(dst, src)