Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)