module Base32
Overview
Module for encoding and decoding in Base32 as per RFC 3548
Extended Modules
Defined in:
crystal-base32.crConstant Summary
-
TABLE =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"
Instance Method Summary
- #decode(str : String) : String
- #decode_as_bytes(str : String) : Bytes
- #encode(str : String) : String
- #random_base32(length = 16, padding = true) : String
- #table
- #table=(table)
- #table_map
- #table_valid?(table)