SignatureVerifier
Verifies signatures against data.
There are two families of verification methods:
tryVerifySignature / VerifyFunction.tryVerify — returns
falseif the signature does not match.verifySignature / VerifyFunction.verify — throws an exception if the signature does not match.
Use verifySignature/tryVerifySignature for one-shot verification, or createVerifyFunction for incremental (streaming) verification.
For the signing counterpart, see SignatureGenerator.
Functions
Link copied to clipboard
Returns a new VerifyFunction for incremental verification.