1 instantiation of DpapiXmlDecryptor
Microsoft.AspNetCore.DataProtection.Tests (1)
XmlEncryption\DpapiXmlEncryptionTests.cs (1)
22var 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)
87return new EncryptedXmlInfo(element, typeof(DpapiXmlDecryptor));
XmlEncryption\XmlEncryptionExtensions.cs (2)
85else if (typeof(DpapiXmlDecryptor).MatchName(typeNameToMatch, typeNameResolver)) 87return activator.CreateInstance<DpapiXmlDecryptor>(decryptorTypeName);
Microsoft.AspNetCore.DataProtection.Tests (2)
XmlEncryption\DpapiXmlEncryptionTests.cs (2)
22var decryptor = new DpapiXmlDecryptor(); 26Assert.Equal(typeof(DpapiXmlDecryptor), encryptedXmlInfo.DecryptorType);