]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/utils.py
Use curve's cofactor during VKO calculations
[pygost.git] / pygost / utils.py
index 8718792deee3278bfba36117c9ca8444b42c2a3c..0ec91fc56fe980639b88e91743d582f14759750b 100644 (file)
@@ -1,6 +1,6 @@
 # coding: utf-8
 # PyGOST -- Pure Python GOST cryptographic functions library
-# Copyright (C) 2015-2019 Sergey Matveev <stargrave@stargrave.org>
+# Copyright (C) 2015-2020 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
@@ -19,7 +19,7 @@ from codecs import getencoder
 from sys import version_info
 
 
-xrange = range if version_info[0] == 3 else xrange  # pylint: disable=redefined-builtin
+xrange = range if version_info[0] == 3 else xrange
 
 
 def strxor(a, b):