Skip to content

Enumeration

Base32

enum Base32

Topics

Type Properties

  • canonical
    Corresponds to canonical Base32, per RFC 4648 § 6. No non-alphabet characters are permitted, padding is required, and the alphabet is uppercase.
  • default
    Alias for canonical.
  • lowercasedCanonical
    Identical to canonical, except the alphabet is lowercase.
  • relaxed
    Corresponds to Base32 as implemented by the C code that was previously used for this functionality. Certain commonly mistyped characters are treated as their visual equivalents, whitespace and hyphens are ignored, and decoding is case-insensitive.