verifySsaPss method

bool verifySsaPss(
  1. dynamic signature,
  2. dynamic msg, {
  3. Mgf? mgf,
  4. Hash? hasher,
  5. int saltLength = 10,
  6. 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);
}