39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Xml.Linq;
|
|
using Microsoft.AspNetCore.DataProtection.XmlEncryption;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace CustomEncryptorSample
|
|
{
|
|
public class CustomXmlEncryptor : IXmlEncryptor
|
|
{
|
|
private readonly ILogger _logger;
|
|
|
|
public CustomXmlEncryptor(IServiceProvider services)
|
|
{
|
|
_logger = services.GetRequiredService<ILoggerFactory>().CreateLogger<CustomXmlEncryptor>();
|
|
}
|
|
|
|
public EncryptedXmlInfo Encrypt(XElement plaintextElement)
|
|
{
|
|
if (plaintextElement == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(plaintextElement));
|
|
}
|
|
|
|
_logger.LogInformation("Not encrypting key");
|
|
|
|
var newElement = new XElement("unencryptedKey",
|
|
new XComment(" This key is not encrypted. "),
|
|
new XElement(plaintextElement));
|
|
var encryptedTextElement = new EncryptedXmlInfo(newElement, typeof(CustomXmlDecryptor));
|
|
|
|
return encryptedTextElement;
|
|
}
|
|
}
|
|
}
|