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
You could subclass CipherOutputStream or even just OutputStream, and just override the flush() method to do nothing.