SignData() public method

public SignData ( Stream data, HashAlgorithmName hashAlgorithm ) : byte[]
data System.IO.Stream
hashAlgorithm HashAlgorithmName
return byte[]
Beispiel #1
0
 public byte[] SignData(byte[] buffer)
 {
     return(_impl.SignData(buffer, HashAlgorithmName.SHA1));
 }
Beispiel #2
0
 public override byte[] SignData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm) =>
 _wrapped.SignData(data, offset, count, hashAlgorithm);