6 writes to EncryptionMethod
System.Security.Cryptography.Xml (6)
System\Security\Cryptography\Xml\EncryptedData.cs (1)
32EncryptionMethod = new EncryptionMethod();
System\Security\Cryptography\Xml\EncryptedKey.cs (1)
68EncryptionMethod = new EncryptionMethod();
System\Security\Cryptography\Xml\EncryptedXml.cs (4)
566ed.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncAES256Url); 570ek.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncRSA15Url); 612ed.EncryptionMethod = new EncryptionMethod(EncryptedXml.XmlEncAES256Url); 649ek.EncryptionMethod = new EncryptionMethod(encryptionMethod);
16 references to EncryptionMethod
Microsoft.AspNetCore.DataProtection (1)
XmlEncryption\EncryptedXmlDecryptor.cs (1)
160var useOAEP = encryptedKey.EncryptionMethod?.KeyAlgorithm == XmlEncRSAOAEPUrl;
System.Security.Cryptography.Xml (15)
System\Security\Cryptography\Xml\EncryptedData.cs (3)
34EncryptionMethod.LoadXml((encryptionMethodNode as XmlElement)!); 101if (EncryptionMethod != null) 102encryptedDataElement.AppendChild(EncryptionMethod.GetXml(document));
System\Security\Cryptography\Xml\EncryptedKey.cs (3)
70EncryptionMethod.LoadXml((encryptionMethodNode as XmlElement)!); 174if (EncryptionMethod != null) 175encryptedKeyElement.AppendChild(EncryptionMethod.GetXml(document));
System\Security\Cryptography\Xml\EncryptedXml.cs (9)
300if (encryptedData.EncryptionMethod == null) 302symmetricAlgorithmUri = encryptedData.EncryptionMethod.KeyAlgorithm; 393if (encryptedData.EncryptionMethod == null) 395symmetricAlgorithmUri = encryptedData.EncryptionMethod.KeyAlgorithm; 449fOAEP = (encryptedKey.EncryptionMethod != null && encryptedKey.EncryptionMethod.KeyAlgorithm == EncryptedXml.XmlEncRSAOAEPUrl); 468fOAEP = (encryptedKey.EncryptionMethod != null && encryptedKey.EncryptionMethod.KeyAlgorithm == EncryptedXml.XmlEncRSAOAEPUrl); 510SymmetricAlgorithm? symAlg = CryptoHelpers.CreateNonTransformFromName<SymmetricAlgorithm>(encryptedKey.EncryptionMethod!.KeyAlgorithm);