Socket
Socket
Sign inDemoInstall

password-hasher

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

password-hasher

simple password hashing and ldap rfc 2307 support


Version published
Maintainers
1
Weekly downloads
252
increased by0.8%
Bundle size
472 bytes
Minified + gzipped

Weekly downloads

Readme

Source

password-hasher

Build Status NPM version

Simplify the generation of password hashes. In addition it supports rfc2307 for usage with LDAP.

Getting Started

Install the module with: npm install password-hasher

var password-hasher = require('password-hasher');

// get hash
var hash = passwordhasher.createHash('ssha512', 'alice', new Buffer('83d88386463f0625', 'hex'));
// returns '21ea8a8975921163474f74e4349eb6b3185b95ada619ae6d83c16dae836eb9c07c33331bf7db8f89d609a01f6278d6e5be7c516a1748cbe87b4cfc125e1e2c9e'

// get rfc 2307 hash
var rfcHash = passwordhasher.formatRFC2307(hash)
// returns '{ssha512}IeqKiXWSEWNHT3TkNJ62sxhbla2mGa5tg8FtroNuucB8MzMb99uPidYJoB9ieNblvnxRahdIy+h7TPwSXh4snoPYg4ZGPwYl'

Documentation

The following hash schemes are supported.

With salt:

  • ssha512 (recommended)
  • ssha384
  • ssha256
  • ssha
  • smd5

Without salt:

  • sha512
  • sha384
  • sha256
  • sha
  • md5

Contributing

PRs are welcome. Code style is checked via jshint.

License

Copyright (c) 2014-2015 Christoph Hartmann. Licensed under the MIT license.

FAQs

Last updated on 10 May 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc