]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost3410.py
Fixed incorrect digest calculation
[pygost.git] / pygost / gost3410.py
index a3e2f7ad8c316458ee8916398842c6dde1af1f07..cdb5b039eb1dd876604c74d4c63135721c1a3fd5 100644 (file)
@@ -1,6 +1,6 @@
 # coding: utf-8
 # PyGOST -- Pure Python GOST cryptographic functions library
-# Copyright (C) 2015-2021 Sergey Matveev <stargrave@stargrave.org>
+# Copyright (C) 2015-2023 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
@@ -55,6 +55,7 @@ class GOST3410Curve(object):
                       the twisted Edwards form
     :param str name: human-readable curve name
     """
+
     def __init__(self, p, q, a, b, x, y, cofactor=1, e=None, d=None, name=None):
         self.p = p
         self.q = q