]> Cypherpunks.ru repositories - pygost.git/commitdiff
Completely get rid of addmod
authorSergey Matveev <stargrave@stargrave.org>
Thu, 9 Jul 2020 07:56:03 +0000 (10:56 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Thu, 9 Jul 2020 07:56:03 +0000 (10:56 +0300)
pygost/gost28147.py
pygost/gost341194.py
pygost/stubs/pygost/gost28147.pyi

index b6f3cf49b6fa80a78918e7c411fab8b72f4effbd..25c0f506a28d35b00fefc5e38c7416a6054d49f9 100644 (file)
@@ -186,12 +186,6 @@ def ns2block(ns):
     )))
 
 
     )))
 
 
-def addmod(x, y, mod=2 ** 32):
-    """ Modulo adding of two integers
-    """
-    return (x + y) % mod
-
-
 def _shift11(x):
     """ 11-bit cyclic shift
     """
 def _shift11(x):
     """ 11-bit cyclic shift
     """
@@ -235,7 +229,7 @@ def xcrypt(seq, sbox, key, ns):
     ]
     n1, n2 = ns
     for i in seq:
     ]
     n1, n2 = ns
     for i in seq:
-        n1, n2 = _shift11(_K(s, addmod(n1, x[i]))) ^ n2, n1
+        n1, n2 = _shift11(_K(s, (n1 + x[i]) % (2 ** 32))) ^ n2, n1
     return n1, n2
 
 
     return n1, n2
 
 
@@ -372,8 +366,8 @@ def cnt(key, data, iv=8 * b"\x00", sbox=DEFAULT_SBOX):
     n2, n1 = encrypt(sbox, key, block2ns(iv))
     gamma = []
     for _ in xrange(0, len(data) + pad_size(len(data), BLOCKSIZE), BLOCKSIZE):
     n2, n1 = encrypt(sbox, key, block2ns(iv))
     gamma = []
     for _ in xrange(0, len(data) + pad_size(len(data), BLOCKSIZE), BLOCKSIZE):
-        n1 = addmod(n1, C2, 2 ** 32)
-        n2 = addmod(n2, C1, 2 ** 32 - 1)
+        n1 = (n1 + C2) % (2 ** 32)
+        n2 = (n2 + C1) % (2 ** 32 - 1)
         gamma.append(ns2block(encrypt(sbox, key, (n1, n2))))
     return strxor(b"".join(gamma), data)
 
         gamma.append(ns2block(encrypt(sbox, key, (n1, n2))))
     return strxor(b"".join(gamma), data)
 
index 6d58efd666de769c9358ff66b2bf5f0175681d23..4ffb45e63f189cb4a4c1027b884c68ee54fddf6e 100644 (file)
@@ -23,7 +23,6 @@ from copy import copy
 from functools import partial
 from struct import pack
 
 from functools import partial
 from struct import pack
 
-from pygost.gost28147 import addmod
 from pygost.gost28147 import block2ns
 from pygost.gost28147 import encrypt
 from pygost.gost28147 import ns2block
 from pygost.gost28147 import block2ns
 from pygost.gost28147 import encrypt
 from pygost.gost28147 import ns2block
@@ -167,7 +166,7 @@ class GOST341194(PEP247):
         for i in xrange(0, len(m), BLOCKSIZE):
             part = m[i:i + BLOCKSIZE][::-1]
             _len += len(part) * 8
         for i in xrange(0, len(m), BLOCKSIZE):
             part = m[i:i + BLOCKSIZE][::-1]
             _len += len(part) * 8
-            checksum = addmod(checksum, int(hexenc(part), 16), 2 ** 256)
+            checksum = (checksum + int(hexenc(part), 16)) % (2 ** 256)
             if len(part) < BLOCKSIZE:
                 part = b"\x00" * (BLOCKSIZE - len(part)) + part
             h = _step(h, part, self.sbox)
             if len(part) < BLOCKSIZE:
                 part = b"\x00" * (BLOCKSIZE - len(part)) + part
             h = _step(h, part, self.sbox)
index d0f17dbc137a3c99308c741f550f7255bc2515ac..0c513e0a4e7e3d3c4fe77b2b8e728d247a65409a 100644 (file)
@@ -16,9 +16,6 @@ def block2ns(data: bytes) -> Words: ...
 def ns2block(ns: Words) -> bytes: ...
 
 
 def ns2block(ns: Words) -> bytes: ...
 
 
-def addmod(x: int, y: int, mod: int=...) -> int: ...
-
-
 def validate_key(key: bytes) -> None: ...
 
 
 def validate_key(key: bytes) -> None: ...