TWBase58 class abstract
Base58 encode / decode functions
- Implementers
Constructors
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
-
TWBase58Decode(
Pointer< Utf8> string) → Pointer<Void> - Decodes a Base58 string, checking the checksum. Returns null if the string is not a valid Base58 string.
-
TWBase58DecodeNoCheck(
Pointer< Utf8> string) → Pointer<Void> - Decodes a Base58 string, w/o checking the checksum. Returns null if the string is not a valid Base58 string.
-
TWBase58Encode(
Pointer< Void> data) → Pointer<Utf8> - Encodes data as a Base58 string, including the checksum.
-
TWBase58EncodeNoCheck(
Pointer< Void> data) → Pointer<Utf8> - Encodes data as a Base58 string, not including the checksum.