X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=pygost%2Ftest_gost28147_mac.py;h=1f016197cdb5f63fa54221c959c8e93ed63a00ab;hb=5ecaafbe1a87f9a311a18574653e6dbc75a776b9;hp=c8c0c84281c6706340590506ecdd539ab6f153c5;hpb=21a30721c31912c296e1faced73e2fd0db191be9;p=pygost.git diff --git a/pygost/test_gost28147_mac.py b/pygost/test_gost28147_mac.py index c8c0c84..1f01619 100644 --- a/pygost/test_gost28147_mac.py +++ b/pygost/test_gost28147_mac.py @@ -4,8 +4,7 @@ # # 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 @@ -26,25 +25,25 @@ class TestMAC(TestCase): k = b"This is message\xFF length\x0032 bytes" def test_a(self): - self.assertEqual( + self.assertSequenceEqual( MAC(self.k, b"a").hexdigest(), "bd5d3b5b2b7b57af", ) def test_abc(self): - self.assertEqual( + self.assertSequenceEqual( MAC(self.k, b"abc").hexdigest(), "28661e40805b1ff9", ) def test_128U(self): - self.assertEqual( + self.assertSequenceEqual( MAC(self.k, 128 * b"U").hexdigest(), "1a06d1bad74580ef", ) def test_13x(self): - self.assertEqual( + self.assertSequenceEqual( MAC(self.k, 13 * b"x").hexdigest(), "917ee1f1a668fbd3", ) @@ -53,7 +52,7 @@ class TestMAC(TestCase): m = MAC(self.k) m.update(b"foo") m.update(b"bar") - self.assertEqual(m.digest(), MAC(self.k, b"foobar").digest()) + self.assertSequenceEqual(m.digest(), MAC(self.k, b"foobar").digest()) def test_copy(self): m = MAC(self.k, b"foo") @@ -61,4 +60,4 @@ class TestMAC(TestCase): m.update(b"barbaz") c.update(b"bar") c.update(b"baz") - self.assertEqual(m.digest(), c.digest()) + self.assertSequenceEqual(m.digest(), c.digest())