Exonum Java Binding v0.8.0
Pre-release
Pre-release
This release brings mainly internal fixes and improvements. It is based on Exonum 0.12.
Changed
Ed25519CryptoFunctionto use the system libsodium by default. If libsodium is not installed,
it will load the bundled library. (#991)Ed25519CryptoFunctionis made package-private. It remains accessible via
CryptoFunctions#ed25519.- After the introduction of MerkleDB the hash of the index is not equal to the root hash of the
corresponding proof tree anymore. ThereforeCheckedProof#getRootHash,
ProofListIndexProxy#getRootHashandProofMapIndexProxy#getRootHashare replaced with
CheckedProof#getIndexHash,ProofListIndexProxy#getIndexHashand
ProofMapIndexProxy#getIndexHashaccordingly. - Network configuration workflow.
generate-configsubcommand now accepts a single parameter -
output directory instead of separate parameters for private and public node configs. See
Tutorial for updated instructions.