13 overrides of CreateDecryptor
System.Security.Cryptography (13)
System\Security\Cryptography\AesCng.Windows.cs (1)
107public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
72public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesImplementation.cs (1)
48public sealed override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesManaged.cs (1)
70public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\DESCryptoServiceProvider.Windows.cs (1)
45public 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.Windows.cs (1)
64public 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\TripleDESCng.Windows.cs (1)
75public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
74public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\TripleDesImplementation.cs (1)
25public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV)
10 references to CreateDecryptor
System.Security.Cryptography (7)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
980using (ICryptoTransform decryptor = cipher.CreateDecryptor(tmpKey, tmpIv))
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
72public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesManaged.cs (1)
70public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, 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\SymmetricAlgorithm.cs (1)
173return CreateDecryptor(Key, IV);
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
75_impl.CreateDecryptor(rgbKey, CapiHelper.TrimLargeIV(rgbIV, BlockSize));
System.Security.Cryptography.Pkcs (1)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
980using (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);