使用 C/C++ 使用 SHA256 加密文件
如何使用 sha256 和 c/c++ 编码文件??? 谢谢!
How can I encode a file using sha256 and c/c++ ???
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用 sha256 和 c/c++ 编码文件??? 谢谢!
How can I encode a file using sha256 and c/c++ ???
Thanks!
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
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.
如果您不知道 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.