PCQRSCANER/venv/Lib/site-packages/Crypto/Signature/PKCS1_PSS.pyi

8 lines
272 B
Python
Raw Normal View History

2019-12-22 21:51:47 +01:00
from typing import Optional, Callable
from Crypto.PublicKey.RSA import RsaKey
from Crypto.Signature.pss import PSS_SigScheme
def new(rsa_key: RsaKey, mgfunc: Optional[Callable]=None, saltLen: Optional[int]=None, randfunc: Optional[Callable]=None) -> PSS_SigScheme: ...