numericode-cipher
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

Numericode Cipher

Numericode substitution cipher encoder/decoder

Build Status

This module does not provide cryptographically secure functionality and shouldn't be used to protect sensitive information. The purpose of this project is to provide an example entrypoint for developing substitution cipher modules for NodeJS.

Installation

$ npm install --save numericode-cipher

Usage

const { decoder, encoder } = require('numericode-cipher');
 
encoder('FOO BAR');
//=> '6 15 15 0 2 1 18'
 
decoder('6 15 15 0 2 1 18');
//=> 'FOO BAR'

License

BSD © @karlbateman

Package Sidebar

Install

npm i numericode-cipher

Weekly Downloads

0

Version

1.0.2

License

BSD

Unpacked Size

16.6 kB

Total Files

39

Last publish

Collaborators

  • karlbateman