2 types derived from RC2
System.Security.Cryptography (2)
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
11public sealed partial class RC2CryptoServiceProvider : RC2
System\Security\Cryptography\RC2Implementation.cs (1)
10internal sealed partial class RC2Implementation : RC2
21 references to RC2
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
902[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.RC2))]
netstandard (1)
netstandard.cs (1)
1906[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.RC2))]
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (4)
657RC2 rc2 = CreateRC2(); 1102private static RC2 CreateRC2() 1106throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(RC2))); 1109return RC2.Create();
System\Security\Cryptography\RC2.cs (3)
26public static new RC2 Create() 33public static new RC2? Create(string AlgName) 35return (RC2?)CryptoConfig.CreateFromName(AlgName);
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (2)
13private readonly RC2 _impl; 25_impl = RC2.Create();
System.Security.Cryptography.Algorithms (1)
System.Security.Cryptography.Algorithms.cs (1)
37[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.RC2))]
System.Security.Cryptography.Pkcs (9)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (4)
96if (alg is RC2) 142if (alg is RC2) 168throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(RC2))); 171alg = RC2.Create();
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (1)
159if (alg is RC2)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (4)
657RC2 rc2 = CreateRC2(); 1102private static RC2 CreateRC2() 1106throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(RC2))); 1109return RC2.Create();