wordpress-hash-node

A phpass portable hashing function compatible with wordpress passwords

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
wordpress-hash-node
3431.0.07 years ago8 years agoMinified + gzip package size for wordpress-hash-node in KB

Readme

wordpress-hash-node
Wordpress hashes (phpass library portable hashes) port for nodejs
Based on phpass for php 5 or greater
install:
$ npm install wordpress-hash-node

usage:
var hasher = require('wordpress-hash-node');
var password = 'testPassword';
var hash = hasher.HashPassword(password);
var checked = hasher.CheckPassword(password, hash); //This will return true;