10 instantiations of EncryptionMethod
System.Configuration (3)
System\Configuration\RSAProtectedConfigurationProvider.cs (3)
70ek.EncryptionMethod = new EncryptionMethod(UseOAEP ? EncryptedXml.XmlEncRSAOAEPUrl : EncryptedXml.XmlEncRSA15Url); 252return UseFIPS ? new EncryptionMethod(EncryptedXml.XmlEncAES256Url) : 253new EncryptionMethod(EncryptedXml.XmlEncTripleDESUrl);
System.Security (7)
system\security\cryptography\xml\encrypteddata.cs (1)
41this.EncryptionMethod = new EncryptionMethod();
system\security\cryptography\xml\encryptedkey.cs (1)
85this.EncryptionMethod = new EncryptionMethod();
system\security\cryptography\xml\encryptedxml.cs (4)
538ed.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncAES256Url); 542ek.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncRSA15Url); 582ed.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncAES256Url); 609ek.EncryptionMethod = new EncryptionMethod(encryptionMethod);
system\security\cryptography\xml\transform.cs (1)
1370encryptionMethodObj = new EncryptionMethod();
5 references to EncryptionMethod
System.Configuration (1)
System\Configuration\RSAProtectedConfigurationProvider.cs (1)
251private EncryptionMethod GetSymEncryptionMethod() {
System.Security (4)
system\security\cryptography\xml\encryptedtype.cs (2)
29private EncryptionMethod m_encryptionMethod; 82public virtual EncryptionMethod EncryptionMethod {
system\security\cryptography\xml\transform.cs (2)
1359EncryptionMethod encryptionMethodObj = null; 1496Stream Decrypt(EncryptionMethod encryptionMethod, KeyInfo keyInfo, Stream toDecrypt);