C# Class Granados.Crypto.BigIntegerConverter

Converter for the convenience of using the big integer.
ファイルを表示 Open project: poderosaproject/poderosa

Public Methods

Method Description
ParseBinary ( string s ) : byte[]

Parse string as the bit string form.

ParseHex ( string s ) : byte[]

Parse string as the hexadecimal string form.

Method Details

ParseBinary() public static method

Parse string as the bit string form.
parse error
public static ParseBinary ( string s ) : byte[]
s string a string consists of '0' and '1'
return byte[]

ParseHex() public static method

Parse string as the hexadecimal string form.
parse error
public static ParseHex ( string s ) : byte[]
s string a string consists of '0'..'9','a'..'f','A'..'F'
return byte[]