Méthode | Description | |
---|---|---|
Decode ( string s ) : byte[] |
Converts the specified string, which encodes binary data as base 58 digits, to an equivalent 8-bit unsigned integer array.
|
|
Encode ( byte bytes ) : string |
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-58 characters.
|
|
FromBase58 ( this s ) : byte[] |
Converts the specified string, which encodes binary data as base 58 digits, to an equivalent 8-bit unsigned integer array.
|
|
ToBase58 ( this bytes ) : string |
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with base-58 digits.
|
public static Decode ( string s ) : byte[] | ||
s | string | /// The base 58 string to convert. /// |
Résultat | byte[] |
public static Encode ( byte bytes ) : string | ||
bytes | byte | /// An array of 8-bit unsigned integers. /// |
Résultat | string |
public static FromBase58 ( this s ) : byte[] | ||
s | this | /// The base 58 string to convert. /// |
Résultat | byte[] |
public static ToBase58 ( this bytes ) : string | ||
bytes | this | /// An array of 8-bit unsigned integers. /// |
Résultat | string |