]> Cypherpunks.ru repositories - pygost.git/blobdiff - pygost/gost28147.py
Fix gost28147.addmod with bigger than modulo values
[pygost.git] / pygost / gost28147.py
index 01368f8b3e26475935e507821f999aac211a38fd..3d6705dbd1a2f542e2d2c07982ee1c2be0df38ab 100644 (file)
@@ -190,7 +190,7 @@ def addmod(x, y, mod=2 ** 32):
     """ Modulo adding of two integers
     """
     r = x + y
-    return r if r < mod else r - mod
+    return r if r < mod else r % mod
 
 
 def _shift11(x):