2016-02-02 23:47:42 +00:00
|
|
|
## go-sqlcipher [![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/mutecomm/go-sqlcipher) [![Build Status](http://img.shields.io/travis/mutecomm/go-sqlcipher.svg?style=flat-square)](https://travis-ci.org/mutecomm/go-sqlcipher)
|
2015-04-28 23:56:53 +00:00
|
|
|
|
2015-09-27 06:01:47 +00:00
|
|
|
### Description
|
2015-04-28 23:56:53 +00:00
|
|
|
|
|
|
|
Self-contained Go sqlite3 driver with an AES-256 encrypted sqlite3 database
|
|
|
|
conforming to the built-in database/sql interface. It is based on:
|
|
|
|
|
|
|
|
- stripped-down Go sqlite3 driver: https://github.com/mattn/go-sqlite3
|
|
|
|
- SQLite extension with AES-256 codec: https://github.com/sqlcipher/sqlcipher
|
|
|
|
- AES-256 implementation from: https://github.com/libtom/libtomcrypt
|
|
|
|
|
|
|
|
SQLite itself is part of SQLCipher.
|
|
|
|
|
2019-02-27 15:23:16 +00:00
|
|
|
go-sqlcipher currently only supports the SQLCipher 3.x releases.
|
|
|
|
|
2015-04-28 23:56:53 +00:00
|
|
|
|
2015-09-27 06:01:47 +00:00
|
|
|
### Installation
|
2015-04-28 23:56:53 +00:00
|
|
|
|
|
|
|
This package can be installed with the go get command:
|
|
|
|
|
|
|
|
go get github.com/mutecomm/go-sqlcipher
|
|
|
|
|
|
|
|
|
2015-09-27 06:01:47 +00:00
|
|
|
### Documentation
|
2015-04-28 23:56:53 +00:00
|
|
|
|
2015-11-30 00:02:48 +00:00
|
|
|
To create and open encrypted database files use the following DSN parameters:
|
|
|
|
|
|
|
|
```go
|
|
|
|
key := "2DD29CA851E7B56E4697B0E1F08507293D761A05CE4D1B628663F411A8086D99"
|
2015-11-30 01:00:07 +00:00
|
|
|
dbname := fmt.Sprintf("db?_pragma_key=x'%s'&_pragma_cipher_page_size=4096", key)
|
2015-11-30 00:02:48 +00:00
|
|
|
db, _ := sql.Open("sqlite3", dbname)
|
|
|
|
```
|
|
|
|
|
|
|
|
`_pragma_key` is the hex encoded 32 byte key (must be 64 characters long).
|
|
|
|
`_pragma_cipher_page_size` is the page size of the encrypted database (set if
|
|
|
|
you want a different value than the default 1024 bytes).
|
|
|
|
|
2015-04-28 23:56:53 +00:00
|
|
|
API documentation can be found here:
|
|
|
|
http://godoc.org/github.com/mutecomm/go-sqlcipher
|
|
|
|
|
2017-05-08 21:04:03 +00:00
|
|
|
Use the function
|
|
|
|
[sqlite3.IsEncrypted()](https://godoc.org/github.com/mutecomm/go-sqlcipher#IsEncrypted)
|
|
|
|
to check whether a database file is encrypted or not.
|
|
|
|
|
2015-04-28 23:56:53 +00:00
|
|
|
Examples can be found under the `./_example` directory
|
|
|
|
|
|
|
|
|
2015-09-27 06:01:47 +00:00
|
|
|
### License
|
2015-04-28 23:56:53 +00:00
|
|
|
|
|
|
|
The code of the originating packages is covered by their respective licenses.
|
2015-09-27 06:01:47 +00:00
|
|
|
See [LICENSE](LICENSE) file for details.
|