simple one time pad encrypter/decrypter
npm install onetimepad-js
import Encrypter from './Cipher.js'let enc = new Encrypter();enc.encrypt("hola");enc.decrypt(); // will return "hola".
let enc = new Encrypter();enc.encrypt("hola");enc.decrypt(); // will return "hola".