]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/test_gost3410_vko.py
Raise copyright years
[pygost.git] / pygost / test_gost3410_vko.py
index 83053500cd38bd8d5dedfe042a75d46663954c26..4ccc0e0d1bd9135e39f85c7a8f5cfe2fc4e895d4 100644 (file)
@@ -1,6 +1,6 @@
 # coding: utf-8
 # PyGOST -- Pure Python GOST cryptographic functions library
-# Copyright (C) 2015-2020 Sergey Matveev <stargrave@stargrave.org>
+# Copyright (C) 2015-2021 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
@@ -72,7 +72,7 @@ class TestVKO34102012256(TestCase):
         self.assertSequenceEqual(kek_34102012256(curve, prvB, pubA, ukm), vko)
 
     def test_sequence(self):
-        curve = CURVES["id-tc26-gost-3410-12-512-paramSetA"]
+        curve = CURVES["id-tc26-gost-3410-2012-256-paramSetA"]
         for _ in range(10):
             ukm = ukm_unmarshal(urandom(8))
             prv1 = bytes2long(urandom(32))
@@ -86,6 +86,14 @@ class TestVKO34102012256(TestCase):
             kek2 = kek_34102012256(curve, prv2, pub2, ukm)
             self.assertNotEqual(kek1, kek2)
 
+    def test_pub_is_not_on_curve(self):
+        with self.assertRaises(ValueError):
+            kek_34102012256(
+                CURVES["id-tc26-gost-3410-2012-256-paramSetA"],
+                bytes2long(urandom(32)),
+                pub_unmarshal(urandom(64)),
+            )
+
 
 class TestVKO34102012512(TestCase):
     """RFC 7836