TWBase32 class abstract

Base32 encode / decode functions

Constructors

TWBase32.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

TWBase32Decode(Pointer<Utf8> string) Pointer<Void>
Decode a Base32 input with the default alphabet (ALPHABET_RFC4648)
TWBase32DecodeWithAlphabet(Pointer<Utf8> string, Pointer<Utf8> alphabet) Pointer<Void>
Decode a Base32 input with the given alphabet
TWBase32Encode(Pointer<Void> data) Pointer<Utf8>
Encode an input to Base32 with the default alphabet (ALPHABET_RFC4648)
TWBase32EncodeWithAlphabet(Pointer<Void> data, Pointer<Utf8> alphabet) Pointer<Utf8>
Encode an input to Base32 with the given alphabet