]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost3412.py
Remove pylint comments
[pygost.git] / pygost / gost3412.py
index 6482a4e18b6eeeac3c0d1609840c30716631b5cc..450cc7af80495d2eb5f23a101fce695569bc8444 100644 (file)
@@ -1,11 +1,10 @@
 # coding: utf-8
 # PyGOST -- Pure Python GOST cryptographic functions library
-# Copyright (C) 2015-2018 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
-# 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
@@ -24,7 +23,7 @@ from pygost.gost28147 import decrypt as gost28147_decrypt
 from pygost.gost28147 import encrypt as gost28147_encrypt
 from pygost.gost28147 import ns2block as gost28147_ns2block
 from pygost.utils import strxor
-from pygost.utils import xrange  # pylint: disable=redefined-builtin
+from pygost.utils import xrange
 
 
 LC = bytearray((
@@ -164,7 +163,7 @@ class GOST3412Magma(object):
         """
         # Backward compatibility key preparation for 28147-89 key schedule
         self.key = b"".join(key[i * 4:i * 4 + 4][::-1] for i in range(8))
-        self.sbox = "Gost28147_tc26_ParamZ"
+        self.sbox = "id-tc26-gost-28147-param-Z"
 
     def encrypt(self, blk):
         return gost28147_ns2block(gost28147_encrypt(