4 overrides of CreateSignature
System.Security.Cryptography (4)
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (1)
196
public override byte[]
CreateSignature
(byte[] rgbHash)
System\Security\Cryptography\Cng.NotSupported.cs (1)
218
public override byte[]
CreateSignature
(byte[] rgbHash) => null!;
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
70
public override byte[]
CreateSignature
(byte[] rgbHash) => _impl.CreateSignature(rgbHash);
System\Security\Cryptography\DSAWrapper.cs (1)
26
public override byte[]
CreateSignature
(byte[] rgbHash) =>
8 references to CreateSignature
System.Security.Cryptography (8)
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\DSACryptoServiceProvider.Unix.cs (1)
70
public override byte[] CreateSignature(byte[] rgbHash) => _impl.
CreateSignature
(rgbHash);
System\Security\Cryptography\DSASignatureFormatter.cs (1)
42
return _dsaKey.
CreateSignature
(rgbHash);
System\Security\Cryptography\DSAWrapper.cs (1)
27
_wrapped.
CreateSignature
(rgbHash);