Skip to content
forked from enyo/md5

MD5 algorithm written by Paul Johnston

Notifications You must be signed in to change notification settings

virtru-components/md5

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MD5

MD5 algorithm written by Paul Johnston

Installation

$ component install enyo/md5

API

// MD5
md5 = require('md5'); // Hex

md5sum = md5('content');


md5 = require('md5').hex; // Identical
md5B64 = require('md5').b64; // Base 64
md5Any = require('md5').any;

// Hmac
hmac = require('md5').hmac; // Hex
hmac = require('md5').hmac.hex; // Identical
hmacB64 = require('md5').hmac.b64; // Base 64
hmacAny = require('md5').hmac.any;

License

MIT

About

MD5 algorithm written by Paul Johnston

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.7%
  • Makefile 1.3%