https://github.com/dergoogler/bota64
https://github.com/dergoogler/bota64
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dergoogler/bota64
- Owner: DerGoogler
- Created: 2021-12-27T23:44:02.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-11T19:23:34.000Z (almost 4 years ago)
- Last Synced: 2025-02-04T20:46:53.802Z (over 1 year ago)
- Language: TypeScript
- Size: 229 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bota64
Simple string encryption
## Installing
```bash
npm install bota64 --save
bun add bota64
yarn add bota64
```
# Usage
Quick example
```js
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 :)
```