Encryption of image files on Android — Cipher(Output|Input)Stream problems

前端 未结 2 1372
星月不相逢
星月不相逢 2020-12-24 15:56

I\'m trying to encrypt image files on Android with password based encryption. To save the encrypted image I just do this:

FileOutputStream fos = new FileOutp         


        
2条回答
  •  悲哀的现实
    2020-12-24 16:10

    You could subclass CipherOutputStream or even just OutputStream, and just override the flush() method to do nothing.

提交回复
热议问题