使用 C/C++ 使用 SHA256 加密文件

发布于 2024-08-26 04:19:03 字数 38 浏览 10 评论 0原文

如何使用 sha256 和 c/c++ 编码文件??? 谢谢!

How can I encode a file using sha256 and c/c++ ???
Thanks!

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

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

发布评论

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

评论(2

噩梦成真你也成魔 2024-09-02 04:19:03

SHA 256 代表安全哈希算法!它只会生成给定文件的哈希值。您无法从给定的哈希中检索原始文件,否则哈希函数是无用的。

如果你想进行加密/解密 AES 将是一个更好的解决方案。您需要的一切都在 OpenSSL 中。

SHA 256 stands for Secure Hash Algorithm ! It will only produce the hash of a given file . You can't retrieve the original file from a given hash otherwise hash functions are useless.

If you want to do encryption/decryption AES would be a better solution. Everything you need is in OpenSSL.

一个人练习一个人 2024-09-02 04:19:03

如果您不知道 SHA 的用途,那么您最好询问了解这方面知识的人,而不是自己动手。即使您使用给定的库,您生产万金油的可能性也很大。安全性不仅仅取决于调用某些加密函数。

If you don't know what SHA is for, then you better ask someone who knows this stuff instead of doing it yourself. Even if you use a given library, chances are very high that you will produce snake oil. Security depends on much more than calling some encryption functions.

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