The database files related to documents are also apparently not encrypted:
Sifting through the backup, here's a journal and a related database file:
Code:
lxtest:/media/vbox/edge_backup # find . -print | grep 4c8e313d
./fridge/.edge/.esi-data/.edb/jrnl_4c8e313d.edb
./sdcard/.edge/.esi-content/jrnl_4c8e313d.esj
linux tells me the file is a recognized database:
Code:
lxtest:/media/vbox/edge_backup # file ./fridge/.edge/.esi-data/.edb/jrnl_4c8e313d.edb
./fridge/.edge/.esi-data/.edb/jrnl_4c8e313d.edb: SQLite 3.x database
sqllite has no complaints about the content, either:
Code:
lxtest:/media/vbox/edge_backup # sqlite3 ./fridge/.edge/.esi-data/.edb/jrnl_4c8e313d.edb
SQLite version 3.7.5
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .databases
seq name file
--- --------------- ----------------------------------------------------------
0 main /media/vbox/edge_backup/./fridge/.edge/.esi-data/.edb/jrnl
sqlite> .tables
bookSections
sqlite> select * from bookSections ;
1|jrnl_4c8e313d||0|jrnl_4c8e313d|0|1
sqlite>