1.0.1 • Published 7 years ago

achim-salt v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

How to use

This package designed to generate alphanumeric characters randomly, you can use this as secret key to hash your password. This package also designed to complete achim-crypto package. https://www.npmjs.com/package/achim-crypto

Install

>> npm i -S achim-salt

Example

const salt = require('achim-salt');

var register = (req, res) => {
  secretKey = salt()
  
}