blob: 7ed68e6f116aef018b0c625fd2c3185599899ebc (
plain) (
blame)
1
2
3
4
5
6
7
|
from typing import Optional, Callable
from Cryptodome.PublicKey.RSA import RsaKey
from Cryptodome.Signature.pss import PSS_SigScheme
def new(rsa_key: RsaKey, mgfunc: Optional[Callable]=None, saltLen: Optional[int]=None, randfunc: Optional[Callable]=None) -> PSS_SigScheme: ...
|