1 instantiation of DpapiNGXmlDecryptor
Microsoft.AspNetCore.DataProtection.Tests (1)
XmlEncryption\DpapiNGXmlEncryptionTests.cs (1)
20var 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)
91return new EncryptedXmlInfo(element, typeof(DpapiNGXmlDecryptor));
XmlEncryption\XmlEncryptionExtensions.cs (2)
81if (typeof(DpapiNGXmlDecryptor).MatchName(typeNameToMatch, typeNameResolver)) 83return activator.CreateInstance<DpapiNGXmlDecryptor>(decryptorTypeName);
Microsoft.AspNetCore.DataProtection.Tests (2)
XmlEncryption\DpapiNGXmlEncryptionTests.cs (2)
20var decryptor = new DpapiNGXmlDecryptor(); 24Assert.Equal(typeof(DpapiNGXmlDecryptor), encryptedXmlInfo.DecryptorType);