7 overrides of Mode
System.Security.Cryptography (7)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
53
public override CipherMode
Mode
System\Security\Cryptography\AesManaged.cs (1)
51
public override CipherMode
Mode
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
76
public override CipherMode
Mode
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
96
public override CipherMode
Mode
System\Security\Cryptography\RijndaelImplementation.cs (1)
70
public override CipherMode
Mode
System\Security\Cryptography\RijndaelManaged.cs (1)
66
public override CipherMode
Mode
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
50
public override CipherMode
Mode
15 writes to Mode
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
145
retVal.
Mode
= CipherMode.CBC;
System.Security.Cryptography (7)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
56
set { _impl.
Mode
= value; }
System\Security\Cryptography\AesManaged.cs (1)
54
set { _impl.
Mode
= value; }
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
79
set { _impl.
Mode
= value; }
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
99
set { _impl.
Mode
= value; }
System\Security\Cryptography\RijndaelImplementation.cs (1)
73
set { _impl.
Mode
= value; }
System\Security\Cryptography\RijndaelManaged.cs (1)
69
set { _impl.
Mode
= value; }
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
53
set { _impl.
Mode
= value; }
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
202
alg.
Mode
= CipherMode.CBC;
System.Security.Cryptography.Xml (6)
System\Security\Cryptography\Xml\EncryptedXml.cs (4)
717
symmetricAlgorithm.
Mode
= _mode;
726
symmetricAlgorithm.
Mode
= origMode;
795
symmetricAlgorithm.
Mode
= _mode;
804
symmetricAlgorithm.
Mode
= origMode;
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
136
aes.
Mode
= CipherMode.ECB;
199
aes.
Mode
= CipherMode.ECB;
20 references to Mode
System.Security.Cryptography (18)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
55
get { return _impl.
Mode
; }
System\Security\Cryptography\AesImplementation.cs (3)
198
if (
Mode
== CipherMode.CFB)
204
Mode
,
209
this.GetPaddingSize(
Mode
, FeedbackSize),
System\Security\Cryptography\AesManaged.cs (1)
53
get { return _impl.
Mode
; }
System\Security\Cryptography\DESCryptoServiceProvider.Unix.cs (1)
78
get { return _impl.
Mode
; }
System\Security\Cryptography\DesImplementation.cs (3)
80
if (
Mode
== CipherMode.CFB)
86
Mode
,
92
this.GetPaddingSize(
Mode
, FeedbackSize),
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
98
get { return _impl.
Mode
; }
System\Security\Cryptography\RC2Implementation.cs (2)
73
if (
Mode
== CipherMode.CFB)
79
return CreateTransformCore(
Mode
, Padding, rgbKey, rgbIV, BlockSize / BitsPerByte, FeedbackSize / BitsPerByte, GetPaddingSize(), encrypting);
System\Security\Cryptography\RijndaelImplementation.cs (1)
72
get { return _impl.
Mode
; }
System\Security\Cryptography\RijndaelManaged.cs (1)
68
get { return _impl.
Mode
; }
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
52
get { return _impl.
Mode
; }
System\Security\Cryptography\TripleDesImplementation.cs (3)
77
if (
Mode
== CipherMode.CFB)
83
Mode
,
88
this.GetPaddingSize(
Mode
, FeedbackSize),
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
711
CipherMode origMode = symmetricAlgorithm.
Mode
;
777
CipherMode origMode = symmetricAlgorithm.
Mode
;