2020-05-12 21:49:50 +00:00
|
|
|
# nim-sqlcipher-abi
|
2020-05-12 14:50:43 +00:00
|
|
|
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
|
|
|
|
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)
|
|
|
|
|
|
|
|
A low-level Nim wrapper for the [SQLCipher](https://github.com/sqlcipher/sqlcipher). Builds and exposes the raw C API of SQLCipher.
|
|
|
|
|
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
|
|
|
|
|
|
|
|
## Versioning
|
|
|
|
|
|
|
|
The library generally follows the upstream version number, adding one more number for its own purpose
|
|
|
|
|
|
|
|
## 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
|