TOTPFit/lib/thirty-two/README.md
2024-11-09 16:37:03 +03:00

281 B

thirty-two

Implementation of RFC 3548 Base32 encoding/decoding for node.

Installation

npm install thirty-two

Usage

var base32 = require('thirty-two');
base32.encode('node');
// output: NZXWIZI=
base32.decode('NZXWIZI=');
//output: node