2 overrides of TrySignData
System.Security.Cryptography (2)
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
205
public override bool
TrySignData
(ReadOnlySpan<byte> data, Span<byte> destination, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding, out int bytesWritten)
System\Security\Cryptography\RSAWrapper.cs (1)
117
public override bool
TrySignData
(
6 references to TrySignData
System.Security.Cryptography (6)
System\Security\Cryptography\RSA.cs (4)
453
/// This implementation has not implemented one of <see cref="
TrySignData
" />, <see cref="TrySignHash" />,
468
return rsa.
TrySignData
(input, destination, state.HashAlgorithm, state.Padding, out bytesWritten);
512
/// This implementation has not implemented one of <see cref="
TrySignData
" />, <see cref="TrySignHash" />,
524
if (
TrySignData
(data, destination, hashAlgorithm, padding, out int written))
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
216
return _impl.
TrySignData
(data, destination, hashAlgorithm, padding, out bytesWritten);
System\Security\Cryptography\RSAWrapper.cs (1)
123
_wrapped.
TrySignData
(data, destination, hashAlgorithm, padding, out bytesWritten);