13 overrides of CreateEncryptor
System.Security.Cryptography (13)
System\Security\Cryptography\AesCng.Windows.cs (1)
118public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
70public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesImplementation.cs (1)
60public sealed override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesManaged.cs (1)
68public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\DESCryptoServiceProvider.Windows.cs (1)
57public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\DesImplementation.cs (1)
36public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RC2CryptoServiceProvider.Windows.cs (1)
58public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RC2Implementation.cs (1)
42public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RijndaelImplementation.cs (1)
84public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelManaged.cs (1)
81public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\TripleDESCng.Windows.cs (1)
86public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
71public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\TripleDesImplementation.cs (1)
35public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
11 references to CreateEncryptor
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
632using (var cryptoTransform = symmetricAlg.CreateEncryptor(
System.Security.Cryptography (7)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
432using (ICryptoTransform encryptor = cipher.CreateEncryptor(derivedKey, iv))
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
70public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesManaged.cs (1)
68public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelImplementation.cs (1)
84public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelManaged.cs (1)
81public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
180return CreateEncryptor(Key, IV);
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
72_impl.CreateEncryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System.Security.Cryptography.Pkcs (1)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
432using (ICryptoTransform encryptor = cipher.CreateEncryptor(derivedKey, iv))
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
48enc1 = tripleDES.CreateEncryptor(rgbKey, rgbIV); 49enc2 = tripleDES.CreateEncryptor(rgbKey, s_rgbTripleDES_KW_IV);