Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hash36

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hash36

Crypto hashes in base36

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.5K
decreased by-4.24%
Maintainers
1
Weekly downloads
 
Created
Source

hash36

Crypto hashes in base36

Install

npm i hash36 --save

Use

var hash = require('hash36')
hash.md5('hello')  // 2l5q82f2vf3q7fd9jxcqgxax02
hash.sha1('hello') // f0b08lb0hdhm40cejhtffui4j3zed0el
hash.sha256('hello') // 8vm6tnpm1er18q6bk8ahcwu3od71xwlh12f5trb48j78njsgaas
hash.sha512('hello') // 1x32k2sgmjz4vh9d8p2f7je5e7n29dnh2tshskajx1ba1ax92a2a0wzh6zdgczl2l6vf6261tho87ws66gkac6m83hpl08fa5sdkpxf

hash(input, [options])

Returns a hash.

input

Type: buffer, string, array of string|buffer

Buffer you want to hash.

While strings are supported you should prefer buffers as they're faster to hash. Though if you already have a string you should not convert it to a buffer.

Pass an array instead of concatenating strings and/or buffers. The output is the same, but arrays do not incur the overhead of concatenation.

options

encoding

Type: string Default: hex Values: hex, base64, buffer, binary

Encoding of the returned hash.

algorithm

Type: string Default: sha512 Values: md5, sha1, sha256, sha512

License MIT

FAQs

Package last updated on 28 Apr 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc