16 overrides of CreateEncryptor
Microsoft.AspNetCore.DataProtection.Tests (3)
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorDeserializerTests.cs (2)
134public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) => throw new NotImplementedException(); 144public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) => throw new NotImplementedException();
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorTests.cs (1)
78public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV)
System.Security.Cryptography (13)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
68public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesImplementation.cs (1)
25public sealed override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesManaged.cs (1)
66public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\Cng.NotSupported.cs (2)
98public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => null!; 385public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => null!;
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
31public 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.Unix.cs (1)
38public 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\TripleDESCryptoServiceProvider.Wrap.cs (1)
69public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\TripleDesImplementation.cs (1)
35public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV)
14 references to CreateEncryptor
Microsoft.AspNetCore.DataProtection (2)
Managed\ManagedAuthenticatedEncryptor.cs (2)
113using (var cryptoTransform = symmetricAlg.CreateEncryptor( 332using (var cryptoTransform = symmetricAlgorithm.CreateEncryptor(encryptionSubkey, iv))
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
404using (ICryptoTransform encryptor = cipher.CreateEncryptor(derivedKey, iv))
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
68public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesManaged.cs (1)
66public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
32_impl.CreateEncryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
39_impl.CreateEncryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
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)
70_impl.CreateEncryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
404using (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);