X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=pygost%2Fgost28147.py;h=b6f3cf49b6fa80a78918e7c411fab8b72f4effbd;hb=80dd2b2a713366081c2f3e8a10fd7b5bd705e127;hp=ce84dc2e6ea9bbb505995dfef42ac7403055a103;hpb=5ecaafbe1a87f9a311a18574653e6dbc75a776b9;p=pygost.git diff --git a/pygost/gost28147.py b/pygost/gost28147.py index ce84dc2..b6f3cf4 100644 --- a/pygost/gost28147.py +++ b/pygost/gost28147.py @@ -1,6 +1,6 @@ # coding: utf-8 # PyGOST -- Pure Python GOST cryptographic functions library -# Copyright (C) 2015-2019 Sergey Matveev +# Copyright (C) 2015-2020 Sergey Matveev # # 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 @@ -28,7 +28,7 @@ from pygost.gost3413 import pad_size from pygost.gost3413 import unpad2 from pygost.utils import hexdec from pygost.utils import strxor -from pygost.utils import xrange # pylint: disable=redefined-builtin +from pygost.utils import xrange KEYSIZE = 32 @@ -189,8 +189,7 @@ def ns2block(ns): def addmod(x, y, mod=2 ** 32): """ Modulo adding of two integers """ - r = x + y - return r if r < mod else r - mod + return (x + y) % mod def _shift11(x):