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

public VerifyData ( Stream data, byte signature, HashAlgorithmName hashAlgorithm ) : bool
data System.IO.Stream
signature byte
hashAlgorithm HashAlgorithmName
Результат bool
Пример #1
0
 public override bool VerifyData(
     byte[] data,
     int offset,
     int count,
     byte[] signature,
     HashAlgorithmName hashAlgorithm) =>
 _wrapped.VerifyData(data, offset, count, signature, hashAlgorithm);
Пример #2
0
 public bool VerifyData(byte[] rgbData, byte[] rgbSignature) =>
 _impl.VerifyData(rgbData, rgbSignature, HashAlgorithmName.SHA1);