Skip to content

Instantly share code, notes, and snippets.

@deepal
Created October 7, 2019 18:27
Show Gist options
  • Select an option

  • Save deepal/b5614873438e37204db2e6fa2cfb6a47 to your computer and use it in GitHub Desktop.

Select an option

Save deepal/b5614873438e37204db2e6fa2cfb6a47 to your computer and use it in GitHub Desktop.
Encrypt with bcrypt
const bcrypt = require('bcrypt');
module.exports = (plainText) => {
const salt = bcrypt.genSaltSync(12);
return bcrypt.hashSync(plainText, salt);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment