16 overrides of CreateDecryptor
Microsoft.AspNetCore.DataProtection.Tests (3)
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorDeserializerTests.cs (2)
133
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[] rgbIV) => throw new NotImplementedException();
143
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[] rgbIV) => throw new NotImplementedException();
AuthenticatedEncryption\ConfigurationModel\ManagedAuthenticatedEncryptorDescriptorTests.cs (1)
73
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[] rgbIV)
System.Security.Cryptography (13)
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\Cng.NotSupported.cs (2)
99
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) => null!;
386
public override ICryptoTransform
CreateDecryptor
(byte[] rgbKey, byte[]? rgbIV) => null!;
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
34
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.Unix.cs (1)
41
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\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)
12 references to CreateDecryptor
System.Security.Cryptography (9)
src\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
938
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\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)
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\libraries\Common\src\System\Security\Cryptography\PasswordBasedEncryption.cs (1)
938
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);