2 types derived from RC2
System.Security.Cryptography (2)
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
11
public sealed partial class RC2CryptoServiceProvider :
RC2
System\Security\Cryptography\RC2Implementation.cs (1)
10
internal sealed partial class RC2Implementation :
RC2
22 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 (10)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (4)
657
RC2
rc2 = CreateRC2();
1102
private static
RC2
CreateRC2()
1106
throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(
RC2
)));
1109
return
RC2
.Create();
System\Security\Cryptography\RC2.cs (3)
26
public static new
RC2
Create()
33
public static new
RC2
? Create(string AlgName)
35
return (
RC2
?)CryptoConfig.CreateFromName(AlgName);
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (2)
13
private readonly
RC2
_impl;
25
_impl =
RC2
.Create();
System\Security\Cryptography\RC2Implementation.OpenSsl.cs (1)
55
throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(
RC2
)));
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)
96
if (alg is
RC2
)
142
if (alg is
RC2
)
168
throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(
RC2
)));
171
alg =
RC2
.Create();
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (1)
159
if (alg is
RC2
)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (4)
657
RC2
rc2 = CreateRC2();
1102
private static
RC2
CreateRC2()
1106
throw new PlatformNotSupportedException(SR.Format(SR.Cryptography_AlgorithmNotSupported, nameof(
RC2
)));
1109
return
RC2
.Create();