13 overrides of CreateDecryptor
System.Security.Cryptography (13)
System\Security\Cryptography\AesCng.Windows.cs (1)
107
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
72
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\AesImplementation.cs (1)
48
public sealed override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\AesManaged.cs (1)
70
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\DESCryptoServiceProvider.Windows.cs (1)
45
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\DesImplementation.cs (1)
26
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RC2CryptoServiceProvider.Windows.cs (1)
64
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RC2Implementation.cs (1)
32
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\RijndaelImplementation.cs (1)
86
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelManaged.cs (1)
83
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) => _impl.CreateDecryptor(rgbKey, rgbIV);
System\Security\Cryptography\TripleDESCng.Windows.cs (1)
75
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV)
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
74
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) =>
System\Security\Cryptography\TripleDesImplementation.cs (1)
25
public 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)
980
using (ICryptoTransform decryptor = cipher.
CreateDecryptor
(tmpKey, tmpIv))
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
72
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.
CreateDecryptor
(rgbKey, rgbIV);
System\Security\Cryptography\AesManaged.cs (1)
70
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.
CreateDecryptor
(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelImplementation.cs (1)
86
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.
CreateDecryptor
(rgbKey, rgbIV);
System\Security\Cryptography\RijndaelManaged.cs (1)
83
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[]? rgbIV) => _impl.
CreateDecryptor
(rgbKey, rgbIV);
System\Security\Cryptography\SymmetricAlgorithm.cs (1)
173
return
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)
980
using (ICryptoTransform decryptor = cipher.
CreateDecryptor
(tmpKey, tmpIv))
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
87
dec1 = tripleDES.
CreateDecryptor
(rgbKey, s_rgbTripleDES_KW_IV);
97
dec2 = tripleDES.
CreateDecryptor
(rgbKey, rgbIV);