mxk / go-sqlite

SQLite Library for Go
BSD 3-Clause "New" or "Revised" License
59 stars 20 forks source link

sqlite3 encrypt API #12

Closed denji closed 9 years ago

denji commented 9 years ago

SQLCipher is an open source extension to SQLite that provides transparent 256-bit AES encryption of database files.

mxk commented 9 years ago

I'm aware of sqlcipher. I wanted to implement authenticated encryption using Go packages, so that's what my API is aimed at. Performance is likely to be worse due to Go -> C -> Go call overhead, but I haven't compared it with sqlcipher.