blob: 882cc8f7c7451e925530efaa5f713112d8afe725 (
plain) (
blame)
1
2
3
4
5
6
7
|
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: ...
|