Cnv.FromBase58 Method
Convert a base58-encoded string to an equivalent array of 8-bit unsigned integers.
Syntax
[C#]
public static byte[] FromBase58(
string s
)
[VB]
Public Shared Function FromBase58 (
s As String
) As Byte()
Parameters
- s String
- Base58-encoded data
Return Value
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.
See Also
VB6/C equivalent: CNV_Base58ToBytes
[Contents] [Index]