1 instantiation of DpapiNGXmlDecryptor
Microsoft.AspNetCore.DataProtection.Tests (1)
XmlEncryption\DpapiNGXmlEncryptionTests.cs (1)
20
var decryptor = new
DpapiNGXmlDecryptor
();
8 references to DpapiNGXmlDecryptor
Microsoft.AspNetCore.DataProtection (6)
XmlEncryption\DpapiNGXmlDecryptor.cs (3)
24
/// Creates a new instance of a <see cref="
DpapiNGXmlDecryptor
"/>.
32
/// Creates a new instance of a <see cref="
DpapiNGXmlDecryptor
"/>.
39
_logger = services.GetLogger<
DpapiNGXmlDecryptor
>();
XmlEncryption\DpapiNGXmlEncryptor.cs (1)
91
return new EncryptedXmlInfo(element, typeof(
DpapiNGXmlDecryptor
));
XmlEncryption\XmlEncryptionExtensions.cs (2)
81
if (typeof(
DpapiNGXmlDecryptor
).MatchName(typeNameToMatch, typeNameResolver))
83
return activator.CreateInstance<
DpapiNGXmlDecryptor
>(decryptorTypeName);
Microsoft.AspNetCore.DataProtection.Tests (2)
XmlEncryption\DpapiNGXmlEncryptionTests.cs (2)
20
var
decryptor = new DpapiNGXmlDecryptor();
24
Assert.Equal(typeof(
DpapiNGXmlDecryptor
), encryptedXmlInfo.DecryptorType);