20 references to CipherMode
Microsoft.AspNetCore.DataProtection (1)
Managed\ManagedAuthenticatedEncryptor.cs (1)
148retVal.Mode = CipherMode.CBC;
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
863[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CipherMode))]
netstandard (1)
netstandard.cs (1)
1853[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CipherMode))]
System.Security.Cryptography (6)
artifacts\obj\System.Security.Cryptography\Debug\net10.0\System.Security.Cryptography.notsupported.cs (6)
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); } } 3148protected System.Security.Cryptography.CipherMode ModeValue; 3158public virtual 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); } }
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.cs (1)
204alg.Mode = CipherMode.CBC;
System.Security.Cryptography.Primitives (1)
System.Security.Cryptography.Primitives.cs (1)
9[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CipherMode))]
System.Security.Cryptography.Xml (9)
System\Security\Cryptography\Xml\EncryptedXml.cs (7)
70private CipherMode _mode; 97_mode = CipherMode.CBC; 157public CipherMode Mode 675CipherMode origMode = symmetricAlgorithm.Mode; 695if (_mode == CipherMode.ECB) 729CipherMode origMode = symmetricAlgorithm.Mode; 735if (_mode != CipherMode.ECB)
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
136aes.Mode = CipherMode.ECB; 199aes.Mode = CipherMode.ECB;