BitSharper.EcKey.Verify C# (CSharp) Метод

Verify() публичный Метод

Verifies the given ASN.1 encoded ECDSA signature against a hash using the public key.
public Verify ( byte data, byte signature ) : bool
data byte Hash of the data to verify.
signature byte ASN.1 encoded signature.
Результат bool
        public bool Verify(byte[] data, byte[] signature)
        {
            return Verify(data, signature, _pub);
        }

Same methods

EcKey::Verify ( byte data, byte signature, byte pub ) : bool