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
24 references to UniversalCryptoTransform
System.Security.Cryptography (24)
System\Security\Cryptography\AesImplementation.cs (2)
247private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting) 254private UniversalCryptoTransform CreateTransform(ReadOnlySpan<byte> rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\AesImplementation.Windows.cs (2)
11private static UniversalCryptoTransform CreateTransformCore( 24return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\CngSymmetricAlgorithmCore.cs (6)
142private UniversalCryptoTransform CreateCryptoTransform(bool encrypting) 195private UniversalCryptoTransform CreateCryptoTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting, PaddingMode padding, CipherMode mode, int feedbackSizeInBits) 214private UniversalCryptoTransform CreateEphemeralCryptoTransformCore(byte[] key, byte[]? iv, bool encrypting, PaddingMode padding, CipherMode mode, int feedbackSizeInBits) 229return UniversalCryptoTransform.Create(padding, cipher, encrypting); 252private UniversalCryptoTransform CreatePersistedCryptoTransformCore(Func<CngKey> cngKeyFactory, byte[]? iv, bool encrypting, PaddingMode padding, CipherMode mode, int feedbackSizeInBits) 267return UniversalCryptoTransform.Create(padding, cipher, encrypting);
System\Security\Cryptography\DESCryptoServiceProvider.Windows.cs (2)
63private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting) 106return UniversalCryptoTransform.Create(Padding, cipher, encrypting);
System\Security\Cryptography\DesImplementation.cs (1)
58private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\DesImplementation.Windows.cs (2)
11private static UniversalCryptoTransform CreateTransformCore( 24return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\RC2CryptoServiceProvider.Windows.cs (2)
81private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting) 108return UniversalCryptoTransform.Create(Padding, cipher, encrypting);
System\Security\Cryptography\RC2Implementation.cs (1)
57private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\RC2Implementation.Windows.cs (2)
11private static UniversalCryptoTransform CreateTransformCore( 25return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\TripleDesImplementation.cs (1)
50private UniversalCryptoTransform CreateTransform(byte[] rgbKey, byte[]? rgbIV, bool encrypting)
System\Security\Cryptography\TripleDesImplementation.Windows.cs (2)
11private static UniversalCryptoTransform CreateTransformCore( 24return UniversalCryptoTransform.Create(paddingMode, cipher, encrypting);
System\Security\Cryptography\UniversalCryptoTransform.cs (1)
21public static UniversalCryptoTransform Create(