我试图在我的xml中实现自动加密和解密,但它不仅起作用,即数据未加密。可能是什么原因?我的代码如下所示。我正在使用XmlSerializer
课程。感谢
[Serializable]
public class User
{
public string _username;
public string _password;
public string[] _roles;
[XmlIgnore]
public string Username
{
get { return _username; }
set { _username = value; }
}
[XmlIgnore]
public string Password
{
get { return _password; }
set { _password = value; }
}
[XmlIgnore]
public string[] Roles
{
get { return _roles; }
set { _roles = value; }
}
[OnDeserializingAttribute]
internal void DecryptPersonalData(StreamingContext context)
{
_username = Crypto.Decrypt(_username);
_password = Crypto.Decrypt(_password);
for (int i = 0; i < _roles.Length; i++)
{
_roles[i] = Crypto.Decrypt(_roles[i]);
}
}
[OnSerializingAttribute]
internal void EncryptPersonalData(StreamingContext context)
{
_username = Crypto.Encrypt(_username);
_password = Crypto.Encrypt(_password);
for (int i = 0; i < _roles.Length; i++)
{
_roles[i] = Crypto.Encrypt(_roles[i]);
}
}
}
答案 0 :(得分:3)
OnDeserializing
....未使用 XmlSerializer
来执行与XmlSerializer
的自定义序列化,从中派生,并处理IXmlDeserializationCallback
接口。< / p>
这是一个建议的解决方法(基本上你会创建一个“Twin”类,它返回加密数据,并在其集合中进行解密...你不仅会在序列化任务中使用“Twin”。 ..从用户到用户2的复制。)
或者您可以使用DataContractSerializer(但它是限制性的,因为它不支持XML属性,只支持序列化流中的元素。)