├── .gitignore ├── CMakeLists.txt ├── LICENSE.LGPLv21 ├── README.md ├── qt-private ├── README ├── qsql_sqlite.cpp └── qsql_sqlite_p.h ├── smain.cpp ├── sqlcipher.json ├── test-shared ├── CMakeLists.txt └── main.cpp └── test-static ├── CMakeLists.txt └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.LGPLv21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/LICENSE.LGPLv21 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/README.md -------------------------------------------------------------------------------- /qt-private/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/qt-private/README -------------------------------------------------------------------------------- /qt-private/qsql_sqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/qt-private/qsql_sqlite.cpp -------------------------------------------------------------------------------- /qt-private/qsql_sqlite_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/qt-private/qsql_sqlite_p.h -------------------------------------------------------------------------------- /smain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/smain.cpp -------------------------------------------------------------------------------- /sqlcipher.json: -------------------------------------------------------------------------------- 1 | { 2 | "Keys": [ "QSQLCIPHER" ] 3 | } 4 | -------------------------------------------------------------------------------- /test-shared/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/test-shared/CMakeLists.txt -------------------------------------------------------------------------------- /test-shared/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/test-shared/main.cpp -------------------------------------------------------------------------------- /test-static/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/test-static/CMakeLists.txt -------------------------------------------------------------------------------- /test-static/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sijk/qt5-sqlcipher/HEAD/test-static/main.cpp --------------------------------------------------------------------------------