2 implementations of ICspAsymmetricAlgorithm
System.Security.Cryptography (2)
System\Security\Cryptography\DSACryptoServiceProvider.Unix.cs (1)
11public sealed class DSACryptoServiceProvider : DSA, ICspAsymmetricAlgorithm
System\Security\Cryptography\RSACryptoServiceProvider.Unix.cs (1)
10public sealed partial class RSACryptoServiceProvider : RSA, ICspAsymmetricAlgorithm, IRuntimeAlgorithm
13 references to ICspAsymmetricAlgorithm
Microsoft.Build.Tasks.Core (8)
ManifestUtil\CngLightup.cs (8)
438where TCryptoServiceProvider : T, ICspAsymmetricAlgorithm, new() 452Debug.Assert(publicKey is ICspAsymmetricAlgorithm); 454ICspAsymmetricAlgorithm sharedCspKey = (ICspAsymmetricAlgorithm)publicKey; 486Debug.Assert(privateKey is ICspAsymmetricAlgorithm); 488ICspAsymmetricAlgorithm cspKey = (ICspAsymmetricAlgorithm)privateKey; 537private static CspParameters CopyCspParameters(ICspAsymmetricAlgorithm cspAlgorithm)
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
891[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ICspAsymmetricAlgorithm))]
netstandard (1)
netstandard.cs (1)
1888[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ICspAsymmetricAlgorithm))]
System.Security.Cryptography.Csp (1)
System.Security.Cryptography.Csp.cs (1)
10[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.ICspAsymmetricAlgorithm))]
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (2)
214ICspAsymmetricAlgorithm? cspKey = key as ICspAsymmetricAlgorithm;