Represents the raw data of an Ixian RSA key value. More...
Public Attributes | |
byte [] | publicKeyBytes = null |
Serialized format of the RSA public key. More... | |
byte [] | privateKeyBytes = null |
Serialize format of the RSA private key. More... | |
byte [] | lastNonceBytes = null |
Most recently used 'nonce' value for generating additional addresses. More... | |
byte [] | addressBytes = null |
Base address for the public key in publicKeyBytes . More... | |
Represents the raw data of an Ixian RSA key value.
The Key Pair includes the RSA public and private keys, serialized from an internal format to make them easier to use in network communications. In addition, the IxianKeyPair
structure also includes the 'nonce' value, which is used to easily and quickly generate new Ixian addresses without having to recompute new RSA keys.
Definition at line 13 of file CryptoLib.cs.
byte [] DLT.IxianKeyPair.addressBytes = null |
Base address for the public key in publicKeyBytes
.
Definition at line 30 of file CryptoLib.cs.
byte [] DLT.IxianKeyPair.lastNonceBytes = null |
Most recently used 'nonce' value for generating additional addresses.
Definition at line 26 of file CryptoLib.cs.
byte [] DLT.IxianKeyPair.privateKeyBytes = null |
Serialize format of the RSA private key.
Definition at line 22 of file CryptoLib.cs.
byte [] DLT.IxianKeyPair.publicKeyBytes = null |
Serialized format of the RSA public key.
Definition at line 18 of file CryptoLib.cs.