https://github.com/JuliaAPlavin/SQLCipher.jl
Drop-in replacement for SQLite.jl, using the sqlcipher library for full encryption support.
https://github.com/JuliaAPlavin/SQLCipher.jl
database encryption security sqlcipher sqlite
Last synced: about 1 month ago
JSON representation
Drop-in replacement for SQLite.jl, using the sqlcipher library for full encryption support.
- Host: GitHub
- URL: https://github.com/JuliaAPlavin/SQLCipher.jl
- Owner: JuliaAPlavin
- License: other
- Created: 2024-02-18T17:59:07.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-16T12:17:52.000Z (about 1 year ago)
- Last Synced: 2025-09-02T13:48:28.997Z (8 months ago)
- Topics: database, encryption, security, sqlcipher, sqlite
- Language: Julia
- Homepage:
- Size: 11.4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-julia-security - SQLCipher.jl - Drop-in replacement for SQLite.jl using the sqlcipher library for full database encryption support. (Cryptography / Symmetric Encryption)
README
# SQLCipher
Drop-in replacement for [SQLite.jl](https://github.com/JuliaDatabases/SQLite.jl), but uses [SQLCipher](https://github.com/sqlcipher/sqlcipher) instead of plain SQLite. This is a fork of `SQLite.jl`, keeping the same underlying code and package versions.
See `SQLite.jl` docs for the interface and usage information, and SQLCipher docs for details on encryption features.
Briefly, encryption is enabled by running
```julia
SQLite.execute(db, """PRAGMA key="" """)
```
after opening the database.