3 instantiations of DpapiXmlEncryptor
Microsoft.AspNetCore.DataProtection (3)
DataProtectionBuilderExtensions.cs (1)
332options.XmlEncryptor = new DpapiXmlEncryptor(protectToLocalMachine, loggerFactory);
KeyManagement\XmlKeyManager.cs (2)
672encryptor = new DpapiXmlEncryptor( 702encryptor = new DpapiXmlEncryptor(protectToLocalMachine: true, loggerFactory: _loggerFactory);
3 references to DpapiXmlEncryptor
Microsoft.AspNetCore.DataProtection (3)
XmlEncryption\DpapiXmlDecryptor.cs (1)
14/// An <see cref="IXmlDecryptor"/> that decrypts XML elements that were encrypted with <see cref="DpapiXmlEncryptor"/>.
XmlEncryption\DpapiXmlEncryptor.cs (2)
28/// Creates a <see cref="DpapiXmlEncryptor"/> given a protection scope and an <see cref="IServiceProvider"/>. 38_logger = loggerFactory.CreateLogger<DpapiXmlEncryptor>();