]> Cypherpunks.ru repositories - gogost.git/blobdiff - gost34112012256/kdf_test.go
Use more modern Go version
[gogost.git] / gost34112012256 / kdf_test.go
index 5c85f73fc9ddb635f3d4b60302743a8d48a9820c..e30d75852062e989457821be19b5963054a39c0f 100644 (file)
@@ -32,12 +32,12 @@ func TestKDFGOSTR34112012256(t *testing.T) {
                []byte{0x26, 0xbd, 0xb8, 0x78},
                []byte{0xaf, 0x21, 0x43, 0x41, 0x45, 0x65, 0x63, 0x78},
        )
-       if bytes.Compare(derived, []byte{
+       if !bytes.Equal(derived, []byte{
                0xa1, 0xaa, 0x5f, 0x7d, 0xe4, 0x02, 0xd7, 0xb3,
                0xd3, 0x23, 0xf2, 0x99, 0x1c, 0x8d, 0x45, 0x34,
                0x01, 0x31, 0x37, 0x01, 0x0a, 0x83, 0x75, 0x4f,
                0xd0, 0xaf, 0x6d, 0x7c, 0xd4, 0x92, 0x2e, 0xd9,
-       }) != 0 {
+       }) {
                t.FailNow()
        }
 }