|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics.CodeAnalysis;
using System.Xml;
namespace System.Security.Cryptography.Xml
{
public class EncryptionMethod
{
private XmlElement? _cachedXml;
private int _keySize;
private string? _algorithm;
public EncryptionMethod()
{
_cachedXml = null;
}
public EncryptionMethod(string? algorithm)
{
_algorithm = algorithm;
_cachedXml = null;
}
[MemberNotNullWhen(true, nameof(_cachedXml))]
private bool CacheValid
{
get
{
return (_cachedXml != null);
}
}
public int KeySize
{
get { return _keySize; }
set
{
if (value <= 0)
throw new ArgumentOutOfRangeException(nameof(value), SR.Cryptography_Xml_InvalidKeySize);
_keySize = value;
_cachedXml = null;
}
}
public string? KeyAlgorithm
{
get { return _algorithm; }
set
{
_algorithm = value;
_cachedXml = null;
}
}
public XmlElement GetXml()
{
if (CacheValid) return _cachedXml;
XmlDocument document = new XmlDocument();
document.PreserveWhitespace = true;
return GetXml(document);
}
internal XmlElement GetXml(XmlDocument document)
{
// Create the EncryptionMethod element
XmlElement encryptionMethodElement = (XmlElement)document.CreateElement("EncryptionMethod", EncryptedXml.XmlEncNamespaceUrl);
if (!string.IsNullOrEmpty(_algorithm))
encryptionMethodElement.SetAttribute("Algorithm", _algorithm);
if (_keySize > 0)
{
// Construct a KeySize element
XmlElement keySizeElement = document.CreateElement("KeySize", EncryptedXml.XmlEncNamespaceUrl);
keySizeElement.AppendChild(document.CreateTextNode(_keySize.ToString(null, null)));
encryptionMethodElement.AppendChild(keySizeElement);
}
return encryptionMethodElement;
}
public void LoadXml(XmlElement value)
{
if (value is null)
{
throw new ArgumentNullException(nameof(value));
}
XmlNamespaceManager nsm = new XmlNamespaceManager(value.OwnerDocument.NameTable);
nsm.AddNamespace("enc", EncryptedXml.XmlEncNamespaceUrl);
XmlElement encryptionMethodElement = value;
_algorithm = Utils.GetAttribute(encryptionMethodElement, "Algorithm", EncryptedXml.XmlEncNamespaceUrl);
XmlNode? keySizeNode = value.SelectSingleNode("enc:KeySize", nsm);
if (keySizeNode != null)
{
KeySize = Convert.ToInt32(Utils.DiscardWhiteSpaces(keySizeNode.InnerText), null);
}
// Save away the cached value
_cachedXml = value;
}
}
}
|