Enumeration
Base32
enum Base32
Topics
Type Properties
static let canonical: BaseNEncodingCorresponds to canonical Base32, per RFC 4648 § 6. No non-alphabet characters are permitted, padding is required, and the alphabet is uppercase.static let `default`: BaseNEncodingAlias forcanonical.static let lowercasedCanonical: BaseNEncodingIdentical tocanonical, except the alphabet is lowercase.static let relaxed: BaseNEncodingCorresponds 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.