https://github.com/fluidtrends/cassi
Cryptographic Asymmetric Secure Storage Infrastructure
https://github.com/fluidtrends/cassi
aes-encryption assymetric-security bcrypt encryption password-manager security sha256
Last synced: about 1 year ago
JSON representation
Cryptographic Asymmetric Secure Storage Infrastructure
- Host: GitHub
- URL: https://github.com/fluidtrends/cassi
- Owner: fluidtrends
- License: mit
- Created: 2018-01-04T03:25:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T05:48:04.000Z (over 3 years ago)
- Last Synced: 2025-04-12T16:59:18.264Z (about 1 year ago)
- Topics: aes-encryption, assymetric-security, bcrypt, encryption, password-manager, security, sha256
- Language: TypeScript
- Homepage:
- Size: 778 KB
- Stars: 10
- Watchers: 11
- Forks: 4
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: docs/security/README.md
Awesome Lists containing this project
README
Cassi
Cryptographic Asymmetric Secure Storage Infrastructure
Manage your secure data in password-protected, encrypted file-based vaults

## Getting Started
There's really nothing to getting Cassi up and running, other than selecting a root directory for your vault storage and setting a password for each vault. Have a look at how easy it is to create a Cassi Vault:
```javascript
// Import Cassi
const cassi = require('cassi')
// Create a new vault instance
const vault = new cassi.Vault({ name: 'my-vault' })
// Create the vault with password 'hello'
vault.create('hello')
.then(({ vault, mnemonic }) => {
// Good stuff, enjoy your new vault
// Store the mnemonic somewhere safe
})
.catch((error) => {
// Something happened and the vault could not be created
})
```
## Documentation
Cassi is very well documented and all objects, options, fields and functions are well explained and they all include examples.
Read the full documentation for detailed instructions on how to create, lock, unlock vaults and how to read and write sensitive data.
[Read The Docs](/docs)
## Contributing
We'd be glad to have you join us as an Cassi Contributor. Get started by reading our Contributor Guide.
[Read The Contributor Guide](/contrib)
## Dependencies
Cassi makes use of the following libraries:
* [lowdb](https://github.com/typicode/lowdb) - for storage
* [fs-extra](https://github.com/jprichardson/node-fs-extra) - for file management
* [uuid](https://github.com/kelektiv/node-uuid) - for generating ids
* [bip38](https://github.com/bitcoinjs/bip38) - for encrypting the machine secret
* [bip39](https://github.com/weilu/bip39) - for generating mnemonics
* [bitcoinjs-lib](https://github.com/bitcoinjs/bitcoinjs-lib) - for generating keys
* [keytar](https://github.com/atom/node-keytar) - for working with the system keychain
* [wif](https://github.com/bitcoinjs/wif) - for decoding machine secrets
## License
Cassi is licensed under the MIT License.
* [Read The License](LICENSE)
## Sponsors
Cassi is sponsored by [Fluid Trends](http://fluidtrends.com) and is part of the Fluid Trends Open Source Lab.
If you'd like to co-sponsor this project, please email your co-sponsorship request to **team at fluidtrends.com**