π modern numeric-ascii encryption & decryption package
npm install supercrypt.js
# or
yarn add supercrypt.js
# or
pnpm add supercrypt.js
const { encrypt, decrypt } = require("supercrypt.js");
(async () => {
const encrypted = await encrypt("Hello, World!");
console.log(encrypted);
const decrypted = await decrypt(encrypted);
console.log(decrypted);
})();
Licensed under the Apache 2.0 license.
Made with β€οΈ by Jonas Franke