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