2 overrides of SignData
System.Security.Cryptography (2)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
203public override byte[] SignData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm)
System\Security\Cryptography\DSAWrapper.cs (1)
32public 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)
101return SignData(data, 0, data.Length, hashAlgorithm);
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (2)
192return _impl.SignData(buffer, offset, count, HashAlgorithmName.SHA1); 208return _impl.SignData(data, offset, count, hashAlgorithm);
System\Security\Cryptography\DSAWrapper.cs (1)
33_wrapped.SignData(data, offset, count, hashAlgorithm);