加密大量大图像的最佳方法是什么?
我需要加密很多大型 JPEG 文件。
这些图片非常敏感,只需在我的应用程序内解密。
由于图像的数量和大小,速度是一个问题。
I need to encrypt a lot of large JPEG files.
The pictures are very sensitive and need to only be decrypted inside my application.
Because of the number and size of the images, speed is an issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的文件是什么格式并不重要 - 您可以加密任何字节序列。
阅读有关 TripleDESCryptoServiceProvider< 的文档/a> 这将为您提供加密任何内容所需的所有工具。
当然,如果 TripleDES 对您来说太慢,您可以尝试较弱的算法。 但是,老实说,在这些问题上,您通常会以速度换取安全。
It really doesn't matter what format your files are - you can encrypt any byte sequence.
Read the documentation on, say, TripleDESCryptoServiceProvider and that will provide you with all the tools you need to encrypt anything.
Of course, if
TripleDES
is too slow for you, you can try a weaker algorithm. But, honestly, you usually trade speed for security in these matters.