npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

multi-crypto

v1.7.0

Published

A Module to encode and decode texts

Readme

Multi Crypto

Multi Crypto is a node lib to cryptography text, encrypt and decrypt, but, how i can use it? Simple:

npm install multi-crypto

and

const multiCrypto = require('multi-crypto')

//for example, enconding a text to binary
const MyText = multiCrypto.encryptBinary('This is my text')

//and Decrypt binary
const MyBinary = multiCrypto.DecryptBinary(
1010100 1101000 1101001 
1110011 100000 1101001 
1110011 100000 1101101 
1111001 100000 1110100 
1100101 1111000 1110100
)

Ciphers List

Binary

multiCrypto.encryptBinary(text)

multiCrypto.DecryptBinary(binary)

Morse

multiCrypto.encryptMorse(text)

multiCrypto.DecryptMorse(morse)

ceaser Cipher

multiCrypto.encryptCeaser(text)

multiCrypto.bruteDecryptCeaser(text) // for show all possibilities

atBash

multiCrypto.encryptAtBash(text)

multiCrypto.decryptAtBash(text)

Affine Cipher

multiCrypto.encryptAffine(text, a, b) // a and b are numbers, like a = 5 and b = 7

multiCrypto.decryptAffine(text, a, b) // a and b are numbers, like a = 5 and b = 7

Auto Key

multiCrypto.encryptAutoKey(text, key) // key must be a string

multiCrypto.decryptAutoKet(text, key) // key must be a string

Baconian Cipher

multiCrypto.encryptBaconian(text, alphabet) // the default alphabet is ABCDEFGHIKLMNOPQRSTUWXYZ

multiCrypto.decryptBaconian(text, alphabet) // the default alphabet is ABCDEFGHIKLMNOPQRSTUWXYZ

Base 64

multiCrypto.encryptBase64(text)

multiCrypto.decryptBase64(base64Text)

Viginere Cipher

multiCrypto.encryptViginere(text, key) // key is like "abc"

multiCrypto.decryptViginere(text, key) // key is like "abc"

Rail Fance

multiCrypto.encryptRailFence(text, key) // key is a number, like 3

multiCrypto.decryptRailFence(text, key) // key is a number, like 3

Simple Substitution

multiCrypto.encryptSimpleSubstitution(text, alphabet)

multiCrypto.decryptSimpleSubstitution(text, alphabet)

// alphabet is like "dynoutmperlqbcwzvsagjfxikh"

Columnar Transposition

multiCrypto.encryptColumnarTransposition(text, key, padChar='x') // padChar is a letter, like "x"

multiCrypto.decryptColumnarTransposition(text, key) // you dont have to put padChar

Porta Cipher

multiCrypto.encryptPorta(text, key) // key is a word

multiCrypto.decryptPorta(text, key) // key is a word

Hill Cipher

multiCrypto.encryptHill(text, key) // key should be 4 numbers, like "5 17 4 15" in a string

multiCrypto.decryptHill(text, key) // key should be 4 numbers, like "5 17 4 15" in a string

Four Square

multiCrypto.encryptFourSquare(text, key1, key2)

multiCrypto.decryptFourSquare(text, key1, key2)

// the keys should be alphabets, like "zgptfoihmuwdrcnykeqaxvsbl" and "mfnbdcrhsaxyogvituewlqzkp"

Play Fair

multiCrypto.encryptPlayfair(text, keysquare)

multiCrypto.decryptPlayfair(text, keysquare)

// keysquare must be a alphabet, like:
"monarchybdefgiklpqstuvwxz"

ADFGVX Cipher

multiCrypto.encryptAdfgvx(text, keysquare, keyword)

multiCrypto.decryptAdfgvx(text, keysquare, keyword)

// keysquare should have all letters and numbers (0 - 9)
// keyword is any word, like "BRAZIL"

ADFGX Cipher

multiCrypto.encryptAdfgx(text, keysquare, keyword)

multiCrypto.decryptAdfgx(text, keysquare, keyword)

// keysquare should have all letters execept "j"
// the key word is any word, like "BRAZIL"

Bifid Cipher

multiCrypto.encryptBifid(text, keysquare, peorid)

multiCrypto.encryptBifid(text, keysquare, peorid)

// keysquare should be all letters exepect "j", it is merged with a letter i

// peorid should be a number, like 5

NPM Page: https://www.npmjs.com/package/multi-crypto

GitHub: https://github.com/edersonferreira/multi-crypto

Created with love by Ederson Ferreira (Brazil) :green_heart: