Quote Originally Posted by ThiagoPSanches View Post
Olaf (maybe only you have this information), can you give me some information about the possibility of opening SqlCipher 3 files or what exactly the RC6 SqlCipher codec can work with?
Since RC-version 6.0.4 I'm using Ulrich Telles SQLite-MultipleCyphers-module...

And by default the Codec-Property sits at the "RC4"-option
(for backwards-compatibility with enrypted RC4/RC5 and also System.Data.SQLite produced DB-Files).

When you switch the Codec-Prop away from "RC4" - to one of the other Codecs, you will have to set the
"special, extended Cypher-Config-Options" (via the SQLite-Pragma-interface).

And for SqlCipher, there's quite a few, as documented here:
https://utelle.github.io/SQLite3Mult...her_sqlcipher/

The Pragma-interface (commands need to be applied via cConnection.Execute, shortly after Opening the DB):
https://utelle.github.io/SQLite3Mult...g_sql_pragmas/

HTH

Olaf