apache-md5
TypeScript icon, indicating that this package has built-in type declarations

1.1.8 • Public • Published

apache-md5

Node.js package for Apache style password encryption using md5.

build

Installation

Via git (or downloaded tarball):

$ git clone git://github.com/gevorg/apache-md5.git

Via npm:

$ npm install apache-md5

Usage

const md5 = require("apache-md5");

// Encrypting password using apache's md5 algorithm.
const encryptedPassword = md5("mypass");

// Should print true.
console.log(md5("mypass", encryptedPassword) == encryptedPassword);
// Should print false.
console.log(md5("notmypass", encryptedPassword) == encryptedPassword);

Running tests

It uses mocha, so just run following command in package directory:

$ npm test

License

The MIT License (MIT)

Package Sidebar

Install

npm i apache-md5

Weekly Downloads

573,391

Version

1.1.8

License

MIT

Unpacked Size

6.28 kB

Total Files

5

Last publish

Collaborators

  • gevorg