Hello @Malyadri
We have already responded to your private support inquiry, but in case you see this first I will provide an answer here as well. To view the raw contents of an encrypted database file, you will first need to retrieve the database file from the device/machine the file exists on. Next, you can run a tool called hexdump
which will display the raw file content in formatted in hexadecimal. Here is an example:
hexdump -C YourDatabase.db
You can find more information regarding the SQLCipher design here. Thanks!