Trying to work with wifi tutorial I can't use supplied python scripts to decrypt and merge and read SQLite database with collected data. So far, I managed to have wifitutorial app create archive on SD Card of the device, I have transferred it to my desktop (Win7 x64) but dbdecrypt.py fails with message: File is either encrypted with another method, another key, or is not a valid sqlite3 db file. I have not changed password (default is 'changeme', I checked it in framework source).
I have also tried to skip encription by changing line 153 in DefaultArchive.java into:
Changed SecretKey key = getKey(); into SecretKey key = null;
I thought that would Instantiate SimpleFileCopier and create unencrypted db file.
Anyway none of previous worked and I can't use provided scripts to decrypt file not I can open it directly in any SQLite manager apps.
Obviously I am missing something important here but I hae jusr run out of ideas.