6 references to KeyAlgorithm
Microsoft.AspNetCore.DataProtection (1)
XmlEncryption\EncryptedXmlDecryptor.cs (1)
160
var useOAEP = encryptedKey.EncryptionMethod?.
KeyAlgorithm
== XmlEncRSAOAEPUrl;
System.Security.Cryptography.Xml (5)
System\Security\Cryptography\Xml\EncryptedXml.cs (5)
277
symmetricAlgorithmUri = encryptedData.EncryptionMethod.
KeyAlgorithm
;
370
symmetricAlgorithmUri = encryptedData.EncryptionMethod.
KeyAlgorithm
;
424
fOAEP = (encryptedKey.EncryptionMethod != null && encryptedKey.EncryptionMethod.
KeyAlgorithm
== EncryptedXml.XmlEncRSAOAEPUrl);
443
fOAEP = (encryptedKey.EncryptionMethod != null && encryptedKey.EncryptionMethod.
KeyAlgorithm
== EncryptedXml.XmlEncRSAOAEPUrl);
485
SymmetricAlgorithm? symAlg = CryptoHelpers.CreateNonTransformFromName<SymmetricAlgorithm>(encryptedKey.EncryptionMethod!.
KeyAlgorithm
);