将加密数据保存在文本文件中

发布于 2024-11-28 12:33:05 字数 106 浏览 0 评论 0原文

我已经加密了我的输出数据。我想将该数据保存在文件中。当我将其保存在文本文件中时,我相信它没有正确保存。因为,从该文件解密后我无法获得正确的数据。我正在使用 C#。我需要实现自己的文件格式吗?请帮我。

I have encrypted my output data. I want to save that data in a file. When I am saving it in a text file, I believe it is not saved properly. Because, I can't get proper data after decryption from that file. I am using C#. Do I need to implement my own file format? Please help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巴黎盛开的樱花 2024-12-05 12:33:05

我相信没有必要询问您是否尝试过加密/解密一些简单的字符串。

尝试使用这些方法来保存它们非常简单:

        System.IO.File.WriteAllBytes();
        System.IO.File.WriteAllText();
        System.IO.File.ReadAllBytes();
        System.IO.File.ReadAllText();

i belive it's Unnecessary to ask you if you tried encrypting / decrypting some simple string.

try using those methods for saving they are soo simple:

        System.IO.File.WriteAllBytes();
        System.IO.File.WriteAllText();
        System.IO.File.ReadAllBytes();
        System.IO.File.ReadAllText();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文