Hi,
I would like to decrypt a file . ReadEncryptedObject return a object (indeed) but WriteObject don't ...
Log return "java.nio.BufferUnderflowException"
So, what else ?
I would like to decrypt a file . ReadEncryptedObject return a object (indeed) but WriteObject don't ...
B4X:
Dim input As RandomAccessFile
Dim output As RandomAccessFile
input.Initialize(File.DirRootExternal, "from-crypt.db", True)
output.Initialize(File.DirDefaultExternal, "normal.db", False)
output.WriteObject(input.ReadEncryptedObject("B4Apassword", input.CurrentPosition), False, 0)
output.Close
Log return "java.nio.BufferUnderflowException"
So, what else ?