X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=blobdiff_plain;f=pygost%2Fgost3412.py;h=296e4fbea72a794ca625c71663ce38b223b0d9e6;hp=450cc7af80495d2eb5f23a101fce695569bc8444;hb=4277661e11e63906d923827e5c124877f1dc0c8d;hpb=a63f78066756e6959b7bcbc52738f2ff4a03a308 diff --git a/pygost/gost3412.py b/pygost/gost3412.py index 450cc7a..296e4fb 100644 --- a/pygost/gost3412.py +++ b/pygost/gost3412.py @@ -26,6 +26,8 @@ from pygost.utils import strxor from pygost.utils import xrange +KEY_SIZE = 32 + LC = bytearray(( 148, 32, 133, 16, 194, 192, 1, 251, 1, 192, 194, 16, 133, 32, 148, 1, )) @@ -123,6 +125,8 @@ def lp(blk): class GOST3412Kuznechik(object): """GOST 34.12-2015 128-bit block cipher Кузнечик (Kuznechik) """ + blocksize = 16 + def __init__(self, key): """ :param key: encryption/decryption key @@ -156,6 +160,8 @@ class GOST3412Kuznechik(object): class GOST3412Magma(object): """GOST 34.12-2015 64-bit block cipher Магма (Magma) """ + blocksize = 8 + def __init__(self, key): """ :param key: encryption/decryption key