5 types derived from RSA
System.Security.Cryptography (5)
251 references to RSA
dotnet-dev-certs (7)
dotnet-svcutil-lib (2)
HttpStress (2)
IIS.FunctionalTests (4)
IIS.LongTests (4)
IIS.NewHandler.FunctionalTests (4)
IIS.NewShim.FunctionalTests (4)
IIS.ShadowCopy.Tests (4)
IISExpress.FunctionalTests (4)
InMemory.FunctionalTests (14)
Microsoft.AspNetCore.Authentication.Test (2)
Microsoft.AspNetCore.DataProtection (1)
Microsoft.AspNetCore.DeveloperCertificates.XPlat (6)
Microsoft.AspNetCore.DeveloperCertificates.XPlat.Tests (1)
Microsoft.AspNetCore.HttpOverrides.Tests (2)
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (14)
Microsoft.AspNetCore.Testing (3)
Microsoft.Build.Tasks.Core (9)
Microsoft.CodeAnalysis (2)
Microsoft.CodeAnalysis.Test.Utilities (2)
mscorlib (1)
netstandard (1)
PresentationUI (1)
System.Security.Cryptography (76)
System\Security\Cryptography\RSA.cs (14)
19public static new partial RSA Create();
23public static new RSA? Create(string algName)
25return (RSA?)CryptoConfig.CreateFromName(algName);
29public static RSA Create(int keySizeInBits)
31RSA rsa = Create();
46public static RSA Create(RSAParameters parameters)
48RSA rsa = Create();
166RSA rsa,
253RSA rsa,
462RSA rsa,
568RSA rsa,
1334static bool Export(RSA alg, Span<byte> destination, out int bytesWritten)
1380static bool Export(RSA alg, Span<byte> destination, out int bytesWritten)
1403private delegate bool TryFunc<TState>(RSA rsa, ReadOnlySpan<byte> input, byte[] destination, TState state, out int bytesWritten);
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Cose (12)
System\Security\Cryptography\Cose\CoseHelpers.cs (4)
120return SignHashWithRSA((RSA)key, hasher, signer.HashAlgorithm, signer.RSASignaturePadding, destination);
145private static int SignHashWithRSA(RSA key, IncrementalHash hasher, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding, Span<byte> destination)
280_ => throw new CryptographicException(SR.Format(SR.Sign1AlgDoesNotMatchWithTheOnesSupportedByTypeOfKey, algorithm, typeof(RSA)))
303RSA => KeyType.RSA,
System.Security.Cryptography.Pkcs (15)
System.Security.Cryptography.Xml (14)
Templates.Blazor.Tests (6)
Templates.Blazor.WebAssembly.Auth.Tests (6)
Templates.Blazor.WebAssembly.Tests (6)
Templates.Mvc.Tests (6)
Templates.Tests (6)