Class Base58
Inheritance
System.Object
Base58
Assembly: Netmavryk.dll
Syntax
public static class Base58 : object
Methods
|
Improve this Doc
View Source
Convert(Byte[])
Declaration
public static string Convert(byte[] bytes)
Parameters
| Type |
Name |
Description |
| System.Byte[] |
bytes |
|
Returns
| Type |
Description |
| System.String |
|
|
Improve this Doc
View Source
Convert(Byte[], Byte[])
Declaration
public static string Convert(byte[] bytes, byte[] prefix)
Parameters
| Type |
Name |
Description |
| System.Byte[] |
bytes |
|
| System.Byte[] |
prefix |
|
Returns
| Type |
Description |
| System.String |
|
|
Improve this Doc
View Source
Parse(String)
Declaration
public static byte[] Parse(string base58)
Parameters
| Type |
Name |
Description |
| System.String |
base58 |
|
Returns
| Type |
Description |
| System.Byte[] |
|
|
Improve this Doc
View Source
Parse(String, Byte[])
Declaration
public static byte[] Parse(string base58, byte[] prefix)
Parameters
| Type |
Name |
Description |
| System.String |
base58 |
|
| System.Byte[] |
prefix |
|
Returns
| Type |
Description |
| System.Byte[] |
|
|
Improve this Doc
View Source
Parse(String, Int32)
Declaration
public static byte[] Parse(string base58, int prefixLength)
Parameters
| Type |
Name |
Description |
| System.String |
base58 |
|
| System.Int32 |
prefixLength |
|
Returns
| Type |
Description |
| System.Byte[] |
|
|
Improve this Doc
View Source
TryParse(String, Byte[], out Byte[])
Declaration
public static bool TryParse(string base58, byte[] prefix, out byte[] bytes)
Parameters
| Type |
Name |
Description |
| System.String |
base58 |
|
| System.Byte[] |
prefix |
|
| System.Byte[] |
bytes |
|
Returns
| Type |
Description |
| System.Boolean |
|
|
Improve this Doc
View Source
TryParse(String, out Byte[])
Declaration
public static bool TryParse(string base58, out byte[] bytes)
Parameters
| Type |
Name |
Description |
| System.String |
base58 |
|
| System.Byte[] |
bytes |
|
Returns
| Type |
Description |
| System.Boolean |
|