TOTPFit/lib/base32/README.md
Савелий Савенок 40f6ae7f76 refactor: refactor of libs
2024-11-09 16:48:52 +03:00

242 B

base32

Implementation of RFC 3548 Base32 encoding/decoding for zepp quickjs.

Usage

import {encode, decode} from 'base32/index.js'
base32.encode('node');
// output: NZXWIZI=
base32.decode('NZXWIZI=');
//output: node