1 instantiation of DpapiXmlDecryptor
Microsoft.AspNetCore.DataProtection.Tests (1)
XmlEncryption\DpapiXmlEncryptionTests.cs (1)
22
var decryptor = new
DpapiXmlDecryptor
();
8 references to DpapiXmlDecryptor
Microsoft.AspNetCore.DataProtection (6)
XmlEncryption\DpapiXmlDecryptor.cs (3)
21
/// Creates a new instance of a <see cref="
DpapiXmlDecryptor
"/>.
29
/// Creates a new instance of a <see cref="
DpapiXmlDecryptor
"/>.
36
_logger = services.GetLogger<
DpapiXmlDecryptor
>();
XmlEncryption\DpapiXmlEncryptor.cs (1)
87
return new EncryptedXmlInfo(element, typeof(
DpapiXmlDecryptor
));
XmlEncryption\XmlEncryptionExtensions.cs (2)
85
else if (typeof(
DpapiXmlDecryptor
).MatchName(typeNameToMatch, typeNameResolver))
87
return activator.CreateInstance<
DpapiXmlDecryptor
>(decryptorTypeName);
Microsoft.AspNetCore.DataProtection.Tests (2)
XmlEncryption\DpapiXmlEncryptionTests.cs (2)
22
var
decryptor = new DpapiXmlDecryptor();
26
Assert.Equal(typeof(
DpapiXmlDecryptor
), encryptedXmlInfo.DecryptorType);