4 overrides of Mode
System.Security.Cryptography (4)
artifacts\obj\System.Security.Cryptography\Debug\net10.0\System.Security.Cryptography.notsupported.cs (4)
123public override System.Security.Cryptography.CipherMode Mode { get { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } } 169public override System.Security.Cryptography.CipherMode Mode { get { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } } 2372public override System.Security.Cryptography.CipherMode Mode { get { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } } 3274public override System.Security.Cryptography.CipherMode Mode { get { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemSecurityCryptography_PlatformNotSupported); } }
8 writes to Mode
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
148retVal.Mode = CipherMode.CBC;
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
204alg.Mode = CipherMode.CBC;
System.Security.Cryptography.Xml (6)
System\Security\Cryptography\Xml\EncryptedXml.cs (4)
681symmetricAlgorithm.Mode = _mode; 690symmetricAlgorithm.Mode = origMode; 747symmetricAlgorithm.Mode = _mode; 756symmetricAlgorithm.Mode = origMode;
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
136aes.Mode = CipherMode.ECB; 199aes.Mode = CipherMode.ECB;
2 references to Mode
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\EncryptedXml.cs (2)
675CipherMode origMode = symmetricAlgorithm.Mode; 729CipherMode origMode = symmetricAlgorithm.Mode;