2 overrides of SignData
System.Security.Cryptography (2)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
203
public override byte[]
SignData
(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm)
System\Security\Cryptography\DSAWrapper.cs (1)
32
public override byte[]
SignData
(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm) =>
4 references to SignData
System.Security.Cryptography (4)
System\Security\Cryptography\DSA.cs (1)
101
return
SignData
(data, 0, data.Length, hashAlgorithm);
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (2)
192
return _impl.
SignData
(buffer, offset, count, HashAlgorithmName.SHA1);
208
return _impl.
SignData
(data, offset, count, hashAlgorithm);
System\Security\Cryptography\DSAWrapper.cs (1)
33
_wrapped.
SignData
(data, offset, count, hashAlgorithm);