easy-crypto
A WIP module aimed at providing a safer, easier to use and beginner friendly
crypto API for Node.js
Goals
- Make
crypto
easy to use. - Make
crypto
safe to use. - Require as little crypto-specific knowledge as possible.
Features/Roadmap
Installation
$ npm install easy-crypto
Usage
Importing the module itself will return undefined
since the behavior of the
entire module is broken down into a set of intent-based submodules.
const password = require('easy-crypto/password');
const hashedPassword = password.hashPasswordSync('correct horse battery staple');
fs.writeFileSync('myfile', hashedPassword);
For an exhaustive list of all submodules and their members, check out the
API docs
License
MIT
Copyright (c) 2019 Ujjwal Sharma
Notice
This module is currently a work-in-progress. Please do not use it in production
until before the 1.0.0
release since the API may break or might as well be
outright unusable to unsafe.