4 overrides of CreateSignature
System.Security.Cryptography (4)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSACng.SignVerify.cs (1)
20public override unsafe byte[] CreateSignature(byte[] rgbHash)
System\Security\Cryptography\DSACryptoServiceProvider.Windows.cs (1)
434public override byte[] CreateSignature(byte[] rgbHash)
System\Security\Cryptography\DSAWrapper.cs (1)
26public override byte[] CreateSignature(byte[] rgbHash) =>
System\Security\Cryptography\OpenSsl.NotSupported.cs (1)
62public override byte[] CreateSignature(byte[] rgbHash) => null!;
7 references to CreateSignature
System.Security.Cryptography (7)
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\DSASignatureFormatter.cs (1)
42return _dsaKey.CreateSignature(rgbHash);
System\Security\Cryptography\DSAWrapper.cs (1)
27_wrapped.CreateSignature(rgbHash);