DerGoogler / Bota64

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bota64

Simple string encryption

Installing

npm install bota64 --save

bun add bota64

yarn add bota64

Usage

Quick example

import Bota64 from "bota64";

const b = new Bota64();

const e = b.encode("I like you :)");

const d = b.decode(e);

console.log(`Encoded: ${e}`); // => ¶¶↕≈─Æ≠αžŸα≥┐¶↔6®œ==

console.log(`Decoded: ${d}`); // => I like you :)

About


Languages

Language:TypeScript 95.4%Language:JavaScript 4.6%