X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=blobdiff_plain;f=pygost%2Fgost34112012256.py;h=865847dc8d33f93c88d41987fdae8ff94fefce4b;hp=1f3c62cfd10b082668d6fce2c53506461e1e80b6;hb=5e92533267cb41c42af1243592c530304d18bff5;hpb=2bb1a163d32e4167e6904ff3c6b4cf64ea7287bb diff --git a/pygost/gost34112012256.py b/pygost/gost34112012256.py index 1f3c62c..865847d 100644 --- a/pygost/gost34112012256.py +++ b/pygost/gost34112012256.py @@ -8,9 +8,9 @@ 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)