createVerifier method
Creates a signature Verifier using this key and the specified algorithm
Implementation
Verifier createVerifier(Identifier algorithm) {
if (this is SymmetricKey) {
return _SymmetricSignerAndVerifier(algorithm, this as SymmetricKey);
}
return _AsymmetricVerifier(algorithm, this);
}