]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost3410.py
Raised copyright years
[pygost.git] / pygost / gost3410.py
index 96520cb48d7bce6919a19365d25d459d4288ef0f..8bd819557d0563cafa332a2bdd02c7cdf2c5678a 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-2022 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
@@ -236,8 +236,8 @@ CURVES["id-tc26-gost-3410-2012-512-paramSetTest"] = CURVES["id-tc26-gost-3410-12
 CURVES["id-tc26-gost-3410-2012-512-paramSetA"] = CURVES["id-tc26-gost-3410-12-512-paramSetA"]
 CURVES["id-tc26-gost-3410-2012-512-paramSetB"] = CURVES["id-tc26-gost-3410-12-512-paramSetB"]
 CURVES["id-tc26-gost-3410-2012-512-paramSetC"] = CURVES["id-tc26-gost-3410-12-512-paramSetC"]
-for name, curve in CURVES.items():
-    curve.name = name
+for _name, _curve in CURVES.items():
+    _curve.name = _name
 DEFAULT_CURVE = CURVES["id-tc26-gost-3410-12-256-paramSetB"]