verifySsaPss method
bool
verifySsaPss(
- dynamic signature,
- dynamic msg, {
- Mgf? mgf,
- Hash? hasher,
- int saltLength = 10,
- RsaSsaPssVerifier? verifier,
Implementation
bool verifySsaPss(/* String | List<int> | BigInt */ signature,
final /* String | List<int> | BigInt */ msg,
{Mgf? mgf,
Hash? hasher,
int saltLength = 10,
RsaSsaPssVerifier? verifier}) {
verifier ??=
RsaSsaPssVerifier(mgf: mgf, hasher: hasher, saltLength: saltLength);
return verifier.verify(this, signature, msg);
}