Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fede03billy/hider

A simple encrypt-decrypt tool. Algorithm inspired by a Stack Overflow answer by Jorge Blom (@bommox).
https://github.com/fede03billy/hider

Last synced: 10 days ago
JSON representation

A simple encrypt-decrypt tool. Algorithm inspired by a Stack Overflow answer by Jorge Blom (@bommox).

Awesome Lists containing this project

README

        

# hider
A simple encrypt-decrypt tool.

## Install the module from the npm registry
`npm install hider`

## Import the default exports from the module
`import hider from 'hider';`

## Use the imported values
`hider.hide('foo', 'bar'); // => '040714'`
`hider.unhide('foo', '040714'); // => 'bar'`