4 overrides of CreateSignature
System.Security.Cryptography (4)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\DSACng.SignVerify.cs (1)
20
public override unsafe byte[]
CreateSignature
(byte[] rgbHash)
System\Security\Cryptography\DSACryptoServiceProvider.Windows.cs (1)
434
public override byte[]
CreateSignature
(byte[] rgbHash)
System\Security\Cryptography\DSAWrapper.cs (1)
26
public override byte[]
CreateSignature
(byte[] rgbHash) =>
System\Security\Cryptography\OpenSsl.NotSupported.cs (1)
62
public override byte[]
CreateSignature
(byte[] rgbHash) => null!;
7 references to CreateSignature
System.Security.Cryptography (7)
System\Security\Cryptography\DSA.cs (5)
149
return
CreateSignature
(hash);
237
byte[] sig =
CreateSignature
(hash);
247
return
CreateSignature
(hash);
442
byte[] sig =
CreateSignature
(hash.ToArray());
509
byte[] sig =
CreateSignature
(hash.ToArray());
System\Security\Cryptography\DSASignatureFormatter.cs (1)
42
return _dsaKey.
CreateSignature
(rgbHash);
System\Security\Cryptography\DSAWrapper.cs (1)
27
_wrapped.
CreateSignature
(rgbHash);