3 writes to ModeValue
mscorlib (3)
system\security\cryptography\aes.cs (1)
33ModeValue = CipherMode.CBC;
system\security\cryptography\symmetricalgorithm.cs (2)
34ModeValue = CipherMode.CBC; 175ModeValue = value;
13 references to ModeValue
mscorlib (9)
system\security\cryptography\descryptoserviceprovider.cs (2)
39return _NewEncryptor(rgbKey, ModeValue, rgbIV, FeedbackSizeValue, CryptoAPITransformMode.Encrypt); 49return _NewEncryptor(rgbKey, ModeValue, rgbIV, FeedbackSizeValue, CryptoAPITransformMode.Decrypt);
system\security\cryptography\rc2cryptoserviceprovider.cs (2)
79return _NewEncryptor(rgbKey, ModeValue, rgbIV, EffectiveKeySizeValue, 85return _NewEncryptor(rgbKey, ModeValue, rgbIV, EffectiveKeySizeValue,
system\security\cryptography\rijndaelmanaged.cs (2)
45ModeValue, 53ModeValue,
system\security\cryptography\symmetricalgorithm.cs (1)
170get { return ModeValue; }
system\security\cryptography\tripledescryptoserviceprovider.cs (2)
36return _NewEncryptor(rgbKey, ModeValue, rgbIV, FeedbackSizeValue, CryptoAPITransformMode.Encrypt); 43return _NewEncryptor(rgbKey, ModeValue, rgbIV, FeedbackSizeValue, CryptoAPITransformMode.Decrypt);
System.IdentityModel (4)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (4)
24if (this.ModeValue != CipherMode.CBC) 25throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.AESCipherModeNotSupported, this.ModeValue))); 36if (this.ModeValue != CipherMode.CBC) 37throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR.GetString(SR.AESCipherModeNotSupported, this.ModeValue)));