Method | Description | |
---|---|---|
KeyShare ( byte Key ) : System |
Construct a key share with the specified secret value.
|
|
KeyShare ( int Bits ) : System |
Construct a key share with the specified number of random bits.
|
|
KeyShare ( int Index, System.Numerics.BigInteger Value ) : System |
Construct a key share with the specified secret value and index.
|
|
KeyShare ( int Index, byte Bytes ) : System |
Construct a key share with the specified secret value and index.
|
public KeyShare ( byte Key ) : System | ||
Key | byte | The secret value. |
return | System |
public KeyShare ( int Bits ) : System | ||
Bits | int | Size of key share to create (in bits). |
return | System |
public KeyShare ( int Index, System.Numerics.BigInteger Value ) : System | ||
Index | int | The key share index and threshold. |
Value | System.Numerics.BigInteger | The key share value/ |
return | System |
public KeyShare ( int Index, byte Bytes ) : System | ||
Index | int | The key share index and threshold. |
Bytes | byte | The key share value/ |
return | System |