3 overrides of TryCreateSignature
System.Security.Cryptography (3)
src\libraries\Common\src\System\Security\Cryptography\DSAOpenSsl.cs (1)
209
public override bool
TryCreateSignature
(
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
72
public override bool
TryCreateSignature
(ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten) =>
System\Security\Cryptography\DSAWrapper.cs (1)
49
public override bool
TryCreateSignature
(ReadOnlySpan<byte> hash, Span<byte> destination, out int bytesWritten) =>
4 references to TryCreateSignature
System.Security.Cryptography (3)
System\Security\Cryptography\DSA.cs (1)
546
TryCreateSignature
(destination.Slice(0, hashLength), destination, out bytesWritten))
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
73
_impl.
TryCreateSignature
(hash, destination, out bytesWritten);
System\Security\Cryptography\DSAWrapper.cs (1)
50
_wrapped.
TryCreateSignature
(hash, destination, out bytesWritten);
System.Security.Cryptography.Pkcs (1)
System\Security\Cryptography\Pkcs\CmsSignature.DSA.cs (1)
155
if (dsa.
TryCreateSignature
(dataHash, rented, out bytesWritten))