Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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).
- Host: GitHub
- URL: https://github.com/fede03billy/hider
- Owner: fede03billy
- License: mit
- Created: 2022-12-03T16:11:29.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-03T20:23:20.000Z (about 2 years ago)
- Last Synced: 2024-11-12T20:16:55.797Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'`