4 overrides of CreateSignature
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (1)
196public override byte[] CreateSignature(byte[] rgbHash)
System\Security\Cryptography\Cng.NotSupported.cs (1)
218public override byte[] CreateSignature(byte[] rgbHash) => null!;
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
70public override byte[] CreateSignature(byte[] rgbHash) => _impl.CreateSignature(rgbHash);
System\Security\Cryptography\DSAWrapper.cs (1)
26public override byte[] CreateSignature(byte[] rgbHash) =>
8 references to CreateSignature
System.Security.Cryptography (8)
System\Security\Cryptography\DSA.cs (5)
149return CreateSignature(hash); 237byte[] sig = CreateSignature(hash); 247return CreateSignature(hash); 442byte[] sig = CreateSignature(hash.ToArray()); 509byte[] sig = CreateSignature(hash.ToArray());
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
70public override byte[] CreateSignature(byte[] rgbHash) => _impl.CreateSignature(rgbHash);
System\Security\Cryptography\DSASignatureFormatter.cs (1)
42return _dsaKey.CreateSignature(rgbHash);
System\Security\Cryptography\DSAWrapper.cs (1)
27_wrapped.CreateSignature(rgbHash);