System.Security.Cryptography.ECDsa.VerifyHash C# (CSharp) Method

VerifyHash() public abstract method

public abstract VerifyHash ( byte hash, byte signature ) : bool
hash byte
signature byte
return bool
        public abstract bool VerifyHash(byte[] hash, byte[] signature);

Usage Example

Beispiel #1
0
 public override bool VerifyHash(byte[] hash, byte[] signature) => _wrapped.VerifyHash(hash, signature);