Android 中的加密和解密

发布于 2025-01-04 13:32:45 字数 66 浏览 0 评论 0原文

我是 android 新手。我想加密一个文件,我想解密它并在图像视图中显示它,任何人都可以帮助我。我不知道加密和解密。

I am new in android.I want to encrypt a file and I want to decrypt it an show it in a image view can anyone help me. I have no idea about the encryption and decryption.

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

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

发布评论

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

评论(1

深海少女心 2025-01-11 13:32:45

如果您在SD卡,您可以将其读入byte[],然后执行realImageContents =解密(fileContents) 对于某些函数decrypt()。然后您可以使用 获取 Bitmap 对象BitmapFactory 并将其传递给 ImageView.setImageBitmap()

查看 javax.crypto 以了解如何使用实际的加密算法。如果您只是想混淆图像,您可以编写自己的 encrypt()/decrypt() 来执行一些简单的操作,例如 XOR 密码 与应用程序中硬编码的密钥。

If you have a File of the file on the SD card, you can read it into a byte[], and do realImageContents = decrypt(fileContents) for some function decrypt(). Then you can get a Bitmap object using BitmapFactory and pass that to ImageView.setImageBitmap().

Look at javax.crypto for using actual encryption algorithms. If you just want to obfuscate the image, you could just write your own encrypt()/decrypt() that does something simple like an XOR cipher with the key hard-coded in your application.

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