2020-05-13 03:14:38 +00:00
|
|
|
# nim-sqlcipher
|
2020-05-12 14:50:43 +00:00
|
|
|
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
|
2020-09-25 21:01:48 +00:00
|
|
|
![Stability: experimental](https://img.shields.io/badge/Stability-experimental-orange.svg)
|
|
|
|
[![Tests (GitHub Actions)](https://github.com/status-im/nim-sqlcipher/workflows/Tests/badge.svg?branch=master)](https://github.com/status-im/nim-sqlcipher/actions?query=workflow%3ATests+branch%3Amaster)
|
2020-05-12 14:50:43 +00:00
|
|
|
|
2020-09-25 21:01:48 +00:00
|
|
|
A nim wrapper for the [SQLCipher](https://github.com/sqlcipher/sqlcipher).
|
2020-05-13 03:14:38 +00:00
|
|
|
It builds SQLCipher and provides a simple API based on the [Tiny_SQLite](https://github.com/GULPF/tiny_sqlite) nimble package
|
2020-05-12 14:50:43 +00:00
|
|
|
|
2020-05-12 21:48:04 +00:00
|
|
|
## Requirements
|
|
|
|
```
|
|
|
|
# Linux
|
|
|
|
sudo apt install libssl-dev
|
|
|
|
|
|
|
|
# MacOS
|
|
|
|
brew install openssl
|
|
|
|
|
|
|
|
# Windows
|
|
|
|
¯\_(ツ)_/¯
|
|
|
|
```
|
|
|
|
|
2020-05-12 14:50:43 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
TODO
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
### Wrapper License
|
|
|
|
|
|
|
|
This repository is licensed and distributed under either of
|
|
|
|
|
|
|
|
* MIT license: [LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT
|
|
|
|
|
|
|
|
### Dependency Licenses
|
|
|
|
|
|
|
|
- SQLCipher https://github.com/sqlcipher/sqlcipher/blob/master/LICENSE
|
|
|
|
- OpenSSL https://github.com/openssl/openssl/blob/master/LICENSE
|
2020-05-13 03:14:38 +00:00
|
|
|
- TinySQLite https://github.com/GULPF/tiny_sqlite/blob/master/LICENSE
|