2 types derived from UniversalCryptoTransform
System.Security.Cryptography (2)
System\Security\Cryptography\UniversalCryptoDecryptor.cs (1)
19internal sealed class UniversalCryptoDecryptor : UniversalCryptoTransform
System\Security\Cryptography\UniversalCryptoEncryptor.cs (1)
19internal sealed class UniversalCryptoEncryptor : UniversalCryptoTransform
13 references to UniversalCryptoTransform
System.Security.Cryptography (13)
System\Security\Cryptography\AesImplementation.cs (1)
181private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\AesImplementation.OpenSsl.cs (2)
10private static UniversalCryptoTransform CreateTransformCore( 24return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\DesImplementation.cs (1)
58private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\DesImplementation.OpenSsl.cs (2)
10private static UniversalCryptoTransform CreateTransformCore( 26return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\RC2Implementation.cs (1)
57private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\RC2Implementation.OpenSsl.cs (2)
10private static UniversalCryptoTransform CreateTransformCore( 26return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\TripleDesImplementation.cs (1)
50private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\TripleDesImplementation.OpenSsl.cs (2)
10private static UniversalCryptoTransform CreateTransformCore( 24return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\UniversalCryptoTransform.cs (1)
21public static UniversalCryptoTransform Create(