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