16 overrides of CreateDecryptor
Microsoft.AspNetCore.DataProtection.Tests (3)
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorDeserializerTests.cs (2)
133public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) => throw new NotImplementedException(); 143public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) => throw new NotImplementedException();
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorTests.cs (1)
73public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV)
System.Security.Cryptography (13)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
70public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesImplementation.cs (1)
15public sealed override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesManaged.cs (1)
68public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\Cng.NotSupported.cs (2)
99public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => null!; 386public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => null!;
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
34public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\DesImplementation.cs (1)
26public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
41public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\RC2Implementation.cs (1)
32public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RijndaelImplementation.cs (1)
86public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelManaged.cs (1)
83public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
72public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\TripleDesImplementation.cs (1)
25public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
13 references to CreateDecryptor
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
245using (var cryptoTransform = symmetricAlgorithm.CreateDecryptor(decryptionSubkey, iv))
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
938using (ICryptoTransform decryptor = cipher.CreateDecryptor(tmpKey, tmpIv))
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
70public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesManaged.cs (1)
68public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
35_impl.CreateDecryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
42_impl.CreateDecryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System\Security\Cryptography\RijndaelImplementation.cs (1)
86public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelManaged.cs (1)
83public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
173return CreateDecryptor(Key, IV);
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
73_impl.CreateDecryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System.Security.Cryptography.Pkcs (1)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
938using (ICryptoTransform decryptor = cipher.CreateDecryptor(tmpKey, tmpIv))
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
87dec1 = tripleDES.CreateDecryptor(rgbKey, s_rgbTripleDES_KW_IV); 97dec2 = tripleDES.CreateDecryptor(rgbKey, rgbIV);