Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andy-goryachev/secdb
Encrypted Key-Value Store
https://github.com/andy-goryachev/secdb
aes-eax b-plus-tree bplustree database embedded-database encrypted-store encryption key-value nosql prefix-query range-query storage xsalsa20 xsalsa20poly1305
Last synced: about 1 month ago
JSON representation
Encrypted Key-Value Store
- Host: GitHub
- URL: https://github.com/andy-goryachev/secdb
- Owner: andy-goryachev
- License: apache-2.0
- Created: 2019-08-23T22:03:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-31T05:41:58.000Z (9 months ago)
- Last Synced: 2024-03-31T06:24:20.591Z (9 months ago)
- Topics: aes-eax, b-plus-tree, bplustree, database, embedded-database, encrypted-store, encryption, key-value, nosql, prefix-query, range-query, storage, xsalsa20, xsalsa20poly1305
- Language: Java
- Homepage:
- Size: 41.1 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SecDB
Encrypted Key-Value Store.
## Features
- Encrypted key-value store
- Bi-directional range queries
- Bi-directional prefix queries
- Append-only files for ease of synchronization## How to Use
**The library is not yet ready for production use**.
## Acknowledgements
Many thanks to the developers of the following open source projects for the inspiration and parts of the code:
- [XSalsa20Poly1305](https://github.com/codahale/xsalsa20poly1305) by [Coda Hale](https://github.com/codahale).
- [b-plus-tree](https://github.com/jiaguofang/b-plus-tree) by [Jiaguo Fang](https://github.com/jiaguofang).
- [BouncyCastle](https://github.com/bcgit/bc-java)## Why
I have several projects that need a general purpose, local, encrypted key-value database.
Something that could possibly get synchronized with a cloud-based storage.This database will be used in the following projects:
- [Access Panel](https://github.com/andy-goryachev/AccessPanelPublic)
- Encrypted Notes
- Secure Digital Archive
- Secure, simple, elderly-oriented email client## Similar Projects
Could not find any.