module Base32

Overview

Module for encoding and decoding in Base32 as per RFC 3548

Extended Modules

Defined in:

crystal-base32.cr

Constant Summary

TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"

Instance Method Summary

Instance Method Detail

def decode(str : String) : String #

[View source]
def decode_as_bytes(str : String) : Bytes #

[View source]
def encode(str : String) : String #

[View source]
def random_base32(length = 16, padding = true) : String #

[View source]
def table #

[View source]
def table=(table) #

[View source]
def table_map #

[View source]
def table_valid?(table) #

[View source]