core-cryption
v1.0.1
Published
A lightweight password hashing library.
Readme
Core-Cryption
A lightweight password hashing library.
Installation
npm install core-cryption
Usage
const coreCryption = require('core-cryption'); const hash = coreCryption.hash("mypassword"); const isMatch = coreCryption.compare("mypassword", hash);
