Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yubaoquan/emojiencrypt
Encrypt text to emoji icons
https://github.com/yubaoquan/emojiencrypt
emoji encrypt
Last synced: 11 days ago
JSON representation
Encrypt text to emoji icons
- Host: GitHub
- URL: https://github.com/yubaoquan/emojiencrypt
- Owner: yubaoquan
- Created: 2017-06-07T13:05:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-07T14:56:55.000Z (over 7 years ago)
- Last Synced: 2024-12-22T09:43:05.229Z (about 1 month ago)
- Topics: emoji, encrypt
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Encrypt text to emoji icons.
install: npm install emoji-encrypt
Totally 2 methods: `encrypt` and `decrypt`.
Here is a demo:
```
const {encrypt, decrypt} = require('emoji-encrypt');let text = 'Hello world';
let key = 'whatever';let ciphertext = encrypt(text, key);
let originText = decrypt(ciphertext, key);
```
Here is [another demo](http://yubaoquan.github.io/encoder/encoder.html)