8 writes to EncryptionMethod
System.Configuration (2)
System\Configuration\RSAProtectedConfigurationProvider.cs (2)
66
ed.
EncryptionMethod
= GetSymEncryptionMethod();
70
ek.
EncryptionMethod
= new EncryptionMethod(UseOAEP ? EncryptedXml.XmlEncRSAOAEPUrl : EncryptedXml.XmlEncRSA15Url);
System.Security (6)
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);
17 references to EncryptionMethod
System.Configuration (2)
System\Configuration\FipsAwareEncryptedXml.cs (2)
62
(symmetricAlgorithmUri != null || encryptedData.
EncryptionMethod
!= null)) {
65
symmetricAlgorithmUri = encryptedData.
EncryptionMethod
.KeyAlgorithm;
System.Security (15)
system\security\cryptography\xml\encrypteddata.cs (3)
43
this.
EncryptionMethod
.LoadXml(encryptionMethodNode as XmlElement);
100
if (this.
EncryptionMethod
!= null)
101
encryptedDataElement.AppendChild(this.
EncryptionMethod
.GetXml(document));
system\security\cryptography\xml\encryptedkey.cs (3)
87
this.
EncryptionMethod
.LoadXml(encryptionMethodNode as XmlElement);
175
if (this.
EncryptionMethod
!= null)
176
encryptedKeyElement.AppendChild(this.
EncryptionMethod
.GetXml(document));
system\security\cryptography\xml\encryptedxml.cs (9)
309
if (encryptedData.
EncryptionMethod
== null)
311
symmetricAlgorithmUri = encryptedData.
EncryptionMethod
.KeyAlgorithm;
390
if (encryptedData.
EncryptionMethod
== null)
392
symmetricAlgorithmUri = encryptedData.
EncryptionMethod
.KeyAlgorithm;
438
fOAEP = (encryptedKey.
EncryptionMethod
!= null && encryptedKey.
EncryptionMethod
.KeyAlgorithm == EncryptedXml.XmlEncRSAOAEPUrl);
452
fOAEP = (encryptedKey.
EncryptionMethod
!= null && encryptedKey.
EncryptionMethod
.KeyAlgorithm == EncryptedXml.XmlEncRSAOAEPUrl);
487
SymmetricAlgorithm symAlg = Utils.CreateFromName<SymmetricAlgorithm>(encryptedKey.
EncryptionMethod
.KeyAlgorithm);