2 instantiations of CertificateXmlEncryptor
Microsoft.AspNetCore.DataProtection (2)
DataProtectionBuilderExtensions.cs (2)
225options.XmlEncryptor = new CertificateXmlEncryptor(certificate, loggerFactory); 261options.XmlEncryptor = new CertificateXmlEncryptor(thumbprint, certificateResolver, loggerFactory);
4 references to CertificateXmlEncryptor
Microsoft.AspNetCore.DataProtection (4)
XmlEncryption\CertificateXmlEncryptor.cs (3)
26/// Creates a <see cref="CertificateXmlEncryptor"/> given a certificate's thumbprint, an 40/// Creates a <see cref="CertificateXmlEncryptor"/> given an <see cref="X509Certificate2"/> instance 54_logger = loggerFactory.CreateLogger<CertificateXmlEncryptor>();
XmlEncryption\IInternalCertificateXmlEncryptor.cs (1)
10/// Internal implementation details of <see cref="CertificateXmlEncryptor"/> for unit testing.