Convert a base58-encoded string to an equivalent array of 8-bit unsigned integers.
Namespace: CryptoSysPKIAssembly: diCrSysPKINet (in diCrSysPKINet.dll) Version: 23.0.0.30549 (23.1.0.0)
Syntaxpublic static byte[] FromBase58(
string s
)
Public Shared Function FromBase58 (
s As String
) As Byte()
Parameters
- s String
- Base58-encoded data
Return Value
ByteData as array of bytes
RemarksThis uses the "Bitcoin" scheme of base58 encoding
where the leading character '1' is reserved for representing
an entire leading zero byte.
See Also