0.0.2 • Published 6 years ago

emoji-encrypt v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

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