cnvBase58ToBytes
Convert a base58-encoded string to an equivalent array of 8-bit unsigned integers.
Syntax
[VBA]
Public Function cnvBase58ToBytes ( _
szInput As String _
) As Byte()
Parameters
- szInput
- Base58-encoded data.
Return Value
Byte(): Data as array of bytes.
Remarks
This uses the "Bitcoin" scheme of base58 encoding where the leading character "1"
is reserved for representing an entire leading zero byte.