base32-decode
v1.0.0
Published
Base32 decoder with support for multiple variants.
Downloads
220,816
Maintainers
Readme
Base32 Decode
Base32 decoder with support for multiple variants.
Installation
npm install --save base32-decode
Usage
const base32Decode = require('base32-decode')
console.log(base32Decode('EHJQ6X0', 'Crockford'))
//=> ArrayBuffer { 4 }
console.log(base32Decode('ORSXG5A=', 'RFC4648'))
//=> ArrayBuffer { 4 }
console.log(base32Decode('EHIN6T0=', 'RFC4648-HEX'))
//=> ArrayBuffer { 4 }
API
base32Decode(input, variant)
input
<String>variant
<String>- Return: <ArrayBuffer> The decoded raw data
Decode the data in input
. variant
should be one of the supported variants
listed below.
'RFC3548'
- Alias for'RFC4648'
'RFC4648'
- Base32 from RFC4648'RFC4648-HEX'
- base32hex from RFC4648'Crockford'
- Crockford's Base32
See also
- base32-encode - Base32 encoder