]> Cypherpunks.ru repositories - pygost.git/commitdiff
Fix docstring's case
authorSergey Matveev <stargrave@stargrave.org>
Fri, 24 Jul 2020 16:15:01 +0000 (19:15 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Fri, 24 Jul 2020 16:15:01 +0000 (19:15 +0300)
pygost/gost3413.py

index d245ce4c0f4232d635aff1c0f0f6e64799af6719..3a539d2e4b1f9097e78774ea3cf263df648a9d5a 100644 (file)
@@ -74,7 +74,7 @@ def pad3(data, blocksize):
 def ecb_encrypt(encrypter, bs, pt):
     """ECB encryption mode of operation
 
 def ecb_encrypt(encrypter, bs, pt):
     """ECB encryption mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes pt: already padded plaintext
     """
     :param int bs: cipher's blocksize
     :param bytes pt: already padded plaintext
     """
@@ -104,7 +104,7 @@ def ecb_decrypt(decrypter, bs, ct):
 def ctr(encrypter, bs, data, iv):
     """Counter mode of operation
 
 def ctr(encrypter, bs, data, iv):
     """Counter mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes data: plaintext/ciphertext
     :param bytes iv: half blocksize-sized initialization vector
     :param int bs: cipher's blocksize
     :param bytes data: plaintext/ciphertext
     :param bytes iv: half blocksize-sized initialization vector
@@ -124,7 +124,7 @@ def ctr(encrypter, bs, data, iv):
 def ofb(encrypter, bs, data, iv):
     """OFB mode of operation
 
 def ofb(encrypter, bs, data, iv):
     """OFB mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes data: plaintext/ciphertext
     :param bytes iv: blocksize-sized initialization vector
     :param int bs: cipher's blocksize
     :param bytes data: plaintext/ciphertext
     :param bytes iv: blocksize-sized initialization vector
@@ -144,7 +144,7 @@ def ofb(encrypter, bs, data, iv):
 def cbc_encrypt(encrypter, bs, pt, iv):
     """CBC encryption mode of operation
 
 def cbc_encrypt(encrypter, bs, pt, iv):
     """CBC encryption mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes pt: already padded plaintext
     :param bytes iv: blocksize-sized initialization vector
     :param int bs: cipher's blocksize
     :param bytes pt: already padded plaintext
     :param bytes iv: blocksize-sized initialization vector
@@ -185,7 +185,7 @@ def cbc_decrypt(decrypter, bs, ct, iv):
 def cfb_encrypt(encrypter, bs, pt, iv):
     """CFB encryption mode of operation
 
 def cfb_encrypt(encrypter, bs, pt, iv):
     """CFB encryption mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes pt: plaintext
     :param bytes iv: blocksize-sized initialization vector
     :param int bs: cipher's blocksize
     :param bytes pt: plaintext
     :param bytes iv: blocksize-sized initialization vector
@@ -203,7 +203,7 @@ def cfb_encrypt(encrypter, bs, pt, iv):
 def cfb_decrypt(encrypter, bs, ct, iv):
     """CFB decryption mode of operation
 
 def cfb_decrypt(encrypter, bs, ct, iv):
     """CFB decryption mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes ct: ciphertext
     :param bytes iv: blocksize-sized initialization vector
     :param int bs: cipher's blocksize
     :param bytes ct: ciphertext
     :param bytes iv: blocksize-sized initialization vector
@@ -235,7 +235,7 @@ def _mac_ks(encrypter, bs):
 def mac(encrypter, bs, data):
     """MAC (known here as CMAC, OMAC1) mode of operation
 
 def mac(encrypter, bs, data):
     """MAC (known here as CMAC, OMAC1) mode of operation
 
-    :param encrypter: Encrypting function, that takes block as an input
+    :param encrypter: encrypting function, that takes block as an input
     :param int bs: cipher's blocksize
     :param bytes data: data to authenticate
 
     :param int bs: cipher's blocksize
     :param bytes data: data to authenticate