6 references to XmlKeyDecryptionOptions
Microsoft.AspNetCore.DataProtection (6)
DataProtectionBuilderExtensions.cs (2)
229
builder.Services.Configure<
XmlKeyDecryptionOptions
>(o => o.AddKeyDecryptionCertificate(certificate));
278
builder.Services.Configure<
XmlKeyDecryptionOptions
>(o =>
XmlEncryption\EncryptedXmlDecryptor.cs (4)
23
private readonly
XmlKeyDecryptionOptions
? _options;
40
_options = services?.GetService<IOptions<
XmlKeyDecryptionOptions
>>()?.Value;
91
private readonly
XmlKeyDecryptionOptions
? _options;
95
public EncryptedXmlWithCertificateKeys(
XmlKeyDecryptionOptions
? options, XmlDocument document)