Skip to content

rhasan33/md5-hash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MD5-Hash

info badge

A very small JS script for implementing md5 hashing.

Installing

npm:

npm install md5-hash

yarn:

yarn add md5-hash

API

md5("String")

  • takes String params
  • returns 32-bit String

Running the package

importing the package (es6 way):

import md5 from 'md5-hash'
md5("String")

with require statement:

var md5Hash = require("md5-hash")
md5Hash.default("String")

It will return "27118326006d3829667a400ad23d5d98".

Does not work without calling default function. Thanks to Mitul Islam.

License

GNU GPL v3.0

GNU GPL v3.0

About

NPM package for md5 hashing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published