PKCS1_PSS.pyi 287 B

12345678
  1. from typing import Optional, Callable
  2. from Cryptodome.PublicKey.RSA import RsaKey
  3. from Cryptodome.Signature.pss import PSS_SigScheme
  4. def new(rsa_key: RsaKey, mgfunc: Optional[Callable]=None, saltLen: Optional[int]=None, randfunc: Optional[Callable]=None) -> PSS_SigScheme: ...