如何包装/存储 TripleDESCryptoServiceProvider 的密钥
我正在使用 DES 加密,并且我想存储 TripleDESCryptoServiceProvider 的密钥。
但密钥由 (Key + IV) 组成,
我试图将它们保存在 XML 文件中,
XmlTextWriter
Convert.ToBase64String(...)
但由于 IV 在 XML 中包含无效字符“=”而出现异常。
有没有更好的方法来存储对称加密密钥?
I'm using DES encryption, and I want to store the key of TripleDESCryptoServiceProvider.
But the key consists of (Key + IV),
I was trying to save them in an XML file using
XmlTextWriter
Convert.ToBase64String(...)
but there was an exception due to IV contains invalid characters "=" in XML.
Is there a better way to store symmetric cryptography key ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果使用 WriteCData 方法
You can store it in XML if you put it into a CDATA section using the WriteCData method