chore: update gmpy2_pkcs10aep_cipher.py (#4314)

This commit is contained in:
Ikko Eltociear Ashimine 2024-05-13 11:45:29 +09:00 committed by GitHub
parent 8cc492721b
commit e6db7ad1d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -48,7 +48,7 @@ class PKCS1OAEP_Cipher:
`Crypto.Hash.SHA1` is used. `Crypto.Hash.SHA1` is used.
mgfunc : callable mgfunc : callable
A mask generation function that accepts two parameters: a string to A mask generation function that accepts two parameters: a string to
use as seed, and the lenth of the mask to generate, in bytes. use as seed, and the length of the mask to generate, in bytes.
If not specified, the standard MGF1 consistent with ``hashAlgo`` is used (a safe choice). If not specified, the standard MGF1 consistent with ``hashAlgo`` is used (a safe choice).
label : bytes/bytearray/memoryview label : bytes/bytearray/memoryview
A label to apply to this particular encryption. If not specified, A label to apply to this particular encryption. If not specified,
@ -218,7 +218,7 @@ def new(key, hashAlgo=None, mgfunc=None, label=b'', randfunc=None):
:param mgfunc: :param mgfunc:
A mask generation function that accepts two parameters: a string to A mask generation function that accepts two parameters: a string to
use as seed, and the lenth of the mask to generate, in bytes. use as seed, and the length of the mask to generate, in bytes.
If not specified, the standard MGF1 consistent with ``hashAlgo`` is used (a safe choice). If not specified, the standard MGF1 consistent with ``hashAlgo`` is used (a safe choice).
:type mgfunc: callable :type mgfunc: callable