]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost34112012256.py
Unify quotes
[pygost.git] / pygost / gost34112012256.py
index bfb84485a491d872746ee396a1a354439201ce5e..865847dc8d33f93c88d41987fdae8ff94fefce4b 100644 (file)
@@ -4,13 +4,13 @@ This is implementation of :rfc:`6986`. Most function and variable names are
 taken according to specification's terminology.
 """
 
-from gost34112012 import GOST34112012
+from pygost.gost34112012 import GOST34112012
 
 
 class GOST34112012256(GOST34112012):
-    def __init__(self, data=b''):
+    def __init__(self, data=b""):
         super(GOST34112012256, self).__init__(data, digest_size=32)
 
 
-def new(data=b''):
+def new(data=b""):
     return GOST34112012256(data)