]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost34112012512.py
Unify quotes
[pygost.git] / pygost / gost34112012512.py
index 707397da0245e5fa5f75e8dc7be5ad5856f107c7..f02b061b548ea2706c49284185991e3ddb2868bd 100644 (file)
@@ -9,11 +9,11 @@ from pygost.pbkdf2 import pbkdf2 as pbkdf2_base
 
 
 class GOST34112012512(GOST34112012):
-    def __init__(self, data=b''):
+    def __init__(self, data=b""):
         super(GOST34112012512, self).__init__(data, digest_size=64)
 
 
-def new(data=b''):
+def new(data=b""):
     return GOST34112012512(data)