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