Socket
Book a DemoInstallSign in
Socket

sexyhash

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sexyhash

SexyHash ========

latest
npmnpm
Version
2.0.2
Version published
Maintainers
1
Created
Source

SexyHash

Sometimes size matters.

This module can shorten your hex hashes (and other hex data) by compacting it to a larger but still human readable alphabet:

const Hasher = require('sexyhash');

const hash = 'ee45187ab28b4814cf03b2b4224eb974';

const encoded = Hasher.encode(hash); // 7fBKxltZiQd7TFsUkOp26w
const decoded = Hasher.decode(encoded); // ee45187ab28b4814cf03b2b4224eb974

Standard md5 hash goes from 32 characters to 22 characters! And is still valid and reversible to it's original value.

FAQs

Package last updated on 30 May 2019

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