kotlin中图像的AES加密

发布于 2025-01-25 03:54:08 字数 3387 浏览 2 评论 0原文

中加密AES并解密AES的图像

我正在尝试在Kotlin密钥生成

 override suspend fun key_genration(callback: Enc) {
    val keygenerator = KeyGenerator.getInstance("AES")
    keygenerator.init(128)
    val secretKey: Key = keygenerator.generateKey()
    val secretKey1 = secretKey.encoded
    val result = Firebase.firestore.collection("profiles").document("YHMauLouORRtrYBV2h4dHJ5A0s72").update("key","$secretKey1")

}

功能 - 解密

   override suspend fun encryption(imageView: ImageView, Key: ByteArray, name: String, uid: String) {

    val bitmap = (imageView.drawable as BitmapDrawable).bitmap
    val baos = ByteArrayOutputStream()
    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos) // bm is the bitmap object
    val ba: ByteArray = baos.toByteArray()

    val cipher = Cipher.getInstance("AES")

    val keySpec = SecretKeySpec(Key, "AES")
   Log.d("key11119","$keySpec")

    cipher.init(Cipher.ENCRYPT_MODE, keySpec)
    val txt = cipher.doFinal(ba)
    Log.d("poott0","$txt")
    val p =  txt.toString(Charsets.ISO_8859_1)

    Log.d("poott","$p")


  //  val encryptText = String(txt, Charset.defaultCharset())
    val file = File.createTempFile("$name", ".txt")
    file.writeText(p)
    //val storageReference = FirebaseStorage.getInstance().getReference("image/$uid/$name")
    val storageReference = FirebaseStorage.getInstance()
        .getReference("/image/0XhL4jD4XCemk38rcRkIEjJMgjh2/Aadhar/")

    storageReference.putFile(Uri.fromFile(file))
}

功能

 val img = view.findViewById<ImageView>(R.id.imageView2)
    Firebase.firestore.collection("profiles").whereEqualTo("UID", "YHMauLouORRtrYBV2h4dHJ5A0s72").get()
            .addOnSuccessListener {
                val key = it.first().toObject(docretreving::class.java).key
                Log.d("key111","$key")
                Log.d("pooptt","Success")
                val storageRef =
                    FirebaseStorage.getInstance().reference?.child("/image/0XhL4jD4XCemk38rcRkIEjJMgjh2/Aadhar/")
                val localfile = File.createTempFile("temp",".txt")
                storageRef.getFile(localfile)
                    .addOnSuccessListener {
                        Log.d("pooptt","Success")
                        val inputStream: InputStream = localfile.inputStream()
                        val inputString = inputStream.bufferedReader().use { it.readText() }
                        println(inputString)
                        Log.d("pooptt", inputString)
                        val key1 = "mxkLZmSFE1aKWzr6JyybjQ==".toByteArray()
                        Log.d("key111","$key1")
                        val keySpec = SecretKeySpec(key1, "AES")
                        val isro= inputString.toByteArray(Charsets.ISO_8859_1)
                        val cipher = Cipher.getInstance("AES")
                        cipher.init(Cipher.DECRYPT_MODE,keySpec)
                        var decryptedText : ByteArray = cipher.doFinal(isro)
                        Log.d("key110","$decryptedText")
                        val baos = ObjectInputStream(ByteArrayInputStream(decryptedText))
                        val bitmap = baos.readObject() as Bitmap
                        img.setImageBitmap(bitmap)

                    }



            }

-它在解密函数中表示无效的块大小,我不确定是否正确执行此操作。密钥生成函数键并赋予加密功能[现在我只是用1个键转换为base64进行测试] 提前致谢

I am trying to encrypt and decrypt the image by AES in Kotlin

Key Generation Function-

 override suspend fun key_genration(callback: Enc) {
    val keygenerator = KeyGenerator.getInstance("AES")
    keygenerator.init(128)
    val secretKey: Key = keygenerator.generateKey()
    val secretKey1 = secretKey.encoded
    val result = Firebase.firestore.collection("profiles").document("YHMauLouORRtrYBV2h4dHJ5A0s72").update("key","$secretKey1")

}

Encryption Function -

   override suspend fun encryption(imageView: ImageView, Key: ByteArray, name: String, uid: String) {

    val bitmap = (imageView.drawable as BitmapDrawable).bitmap
    val baos = ByteArrayOutputStream()
    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos) // bm is the bitmap object
    val ba: ByteArray = baos.toByteArray()

    val cipher = Cipher.getInstance("AES")

    val keySpec = SecretKeySpec(Key, "AES")
   Log.d("key11119","$keySpec")

    cipher.init(Cipher.ENCRYPT_MODE, keySpec)
    val txt = cipher.doFinal(ba)
    Log.d("poott0","$txt")
    val p =  txt.toString(Charsets.ISO_8859_1)

    Log.d("poott","$p")


  //  val encryptText = String(txt, Charset.defaultCharset())
    val file = File.createTempFile("$name", ".txt")
    file.writeText(p)
    //val storageReference = FirebaseStorage.getInstance().getReference("image/$uid/$name")
    val storageReference = FirebaseStorage.getInstance()
        .getReference("/image/0XhL4jD4XCemk38rcRkIEjJMgjh2/Aadhar/")

    storageReference.putFile(Uri.fromFile(file))
}

Decryption Function -

 val img = view.findViewById<ImageView>(R.id.imageView2)
    Firebase.firestore.collection("profiles").whereEqualTo("UID", "YHMauLouORRtrYBV2h4dHJ5A0s72").get()
            .addOnSuccessListener {
                val key = it.first().toObject(docretreving::class.java).key
                Log.d("key111","$key")
                Log.d("pooptt","Success")
                val storageRef =
                    FirebaseStorage.getInstance().reference?.child("/image/0XhL4jD4XCemk38rcRkIEjJMgjh2/Aadhar/")
                val localfile = File.createTempFile("temp",".txt")
                storageRef.getFile(localfile)
                    .addOnSuccessListener {
                        Log.d("pooptt","Success")
                        val inputStream: InputStream = localfile.inputStream()
                        val inputString = inputStream.bufferedReader().use { it.readText() }
                        println(inputString)
                        Log.d("pooptt", inputString)
                        val key1 = "mxkLZmSFE1aKWzr6JyybjQ==".toByteArray()
                        Log.d("key111","$key1")
                        val keySpec = SecretKeySpec(key1, "AES")
                        val isro= inputString.toByteArray(Charsets.ISO_8859_1)
                        val cipher = Cipher.getInstance("AES")
                        cipher.init(Cipher.DECRYPT_MODE,keySpec)
                        var decryptedText : ByteArray = cipher.doFinal(isro)
                        Log.d("key110","$decryptedText")
                        val baos = ObjectInputStream(ByteArrayInputStream(decryptedText))
                        val bitmap = baos.readObject() as Bitmap
                        img.setImageBitmap(bitmap)

                    }



            }

It says invalid Block size in decryption function , I am not sure if I am doing this correct. The key generating function the key and gives to encryption function[For now I was just testing with 1 key converted to base64 ]
Thanks in Advance

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

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

发布评论

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

评论(1

泪冰清 2025-02-01 03:54:08

您不应将密码放在缓冲的读取器中,该读取器处理文本并可能更改二进制数据。文件和密文都由字节组成,您应该将其视为这样,而不是将其转换为文本。如果需要文本,请使用基本64。

You should not put the ciphertext through a buffered reader, which handles text and may change binary data. Files and ciphertext both consist of bytes, you should treat them as such and not convert them to text. If you need text, use base 64.

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