5530bb195f
* Add test to understand flow of key storage * First commit * Committing to save trait stuff * Working naive design * Add keystore struct * Move keystore files into their own module * Add serde (de)serialize_with magic * Add keystore test * Fix tests * Add comments and minor fixes * Pass optional params to `to_keystore` function * Add `path` field to keystore * Add function to read Keystore from file * Add test vectors and fix Version serialization * Checksum params is empty object * Add public key to Keystore * Add function for saving keystore into file * Deleted account_manager main.rs * Move keystore module to validator_client * Add save_keystore method to validator_directory * Add load_keystore function. Minor refactorings * Fixed dependencies * Address some review comments * Add Password newtype; derive Zeroize * Fix test * Move keystore into own crate * Remove padding * Add error enum, zeroize more things * Fix comment * Add keystore builder * Remove keystore stuff from val client * Add more tests, comments * Add more comments, test vectors * Progress on improving JSON validation * More JSON verification * Start moving JSON into own mod * Remove old code * Add more tests, reader/writers * Tidy * Move keystore into own file * Move more logic into keystore file * Tidy * Tidy * Allow for odd-character hex * Add more json missing field checks * Use scrypt by default * Tidy, address comments * Test path and uuid in vectors * Fix comment * Add checks for kdf params * Enforce empty kdf message * Expose json_keystore mod * Split out encrypt/decrypt * Replace some password usage with slice * Expose PlainText struct * First commits on path derivation * Progress with implementation * More progress * Passing intermediate test vectors * Tidy, add comments * Add DerivedKey structs * Move key derivation into own crate * Add zeroize structs * Return error for empty seed * Add tests * Tidy * Expose consts, remove Password * Expose SALT_SIZE * Move dbg assert statement * Ensure bigints are zeroized * Try fix Cargo.toml Co-authored-by: pawan <pawandhananjay@gmail.com>
68 lines
1.9 KiB
TOML
68 lines
1.9 KiB
TOML
[workspace]
|
|
members = [
|
|
"eth2/proto_array_fork_choice",
|
|
"eth2/operation_pool",
|
|
"eth2/state_processing",
|
|
"eth2/types",
|
|
"eth2/utils/bls",
|
|
"eth2/utils/clap_utils",
|
|
"eth2/utils/compare_fields",
|
|
"eth2/utils/compare_fields_derive",
|
|
"eth2/utils/deposit_contract",
|
|
"eth2/utils/eth2_config",
|
|
"eth2/utils/eth2_interop_keypairs",
|
|
"eth2/utils/eth2_keystore",
|
|
"eth2/utils/eth2_testnet_config",
|
|
"eth2/utils/eth2_keystore",
|
|
"eth2/utils/eth2_key_derivation",
|
|
"eth2/utils/logging",
|
|
"eth2/utils/eth2_hashing",
|
|
"eth2/utils/hashmap_delay",
|
|
"eth2/utils/lighthouse_metrics",
|
|
"eth2/utils/merkle_proof",
|
|
"eth2/utils/int_to_bytes",
|
|
"eth2/utils/safe_arith",
|
|
"eth2/utils/serde_hex",
|
|
"eth2/utils/slot_clock",
|
|
"eth2/utils/rest_types",
|
|
"eth2/utils/ssz",
|
|
"eth2/utils/ssz_derive",
|
|
"eth2/utils/ssz_types",
|
|
"eth2/utils/swap_or_not_shuffle",
|
|
"eth2/utils/cached_tree_hash",
|
|
"eth2/utils/tree_hash",
|
|
"eth2/utils/tree_hash_derive",
|
|
"eth2/utils/test_random_derive",
|
|
"beacon_node",
|
|
"beacon_node/beacon_chain",
|
|
"beacon_node/client",
|
|
"beacon_node/eth1",
|
|
"beacon_node/eth2-libp2p",
|
|
"beacon_node/network",
|
|
"beacon_node/rest_api",
|
|
"beacon_node/store",
|
|
"beacon_node/timer",
|
|
"beacon_node/version",
|
|
"beacon_node/websocket_server",
|
|
"tests/simulator",
|
|
"tests/ef_tests",
|
|
"tests/eth1_test_rig",
|
|
"tests/node_test_rig",
|
|
"tests/state_transition_vectors",
|
|
"lcli",
|
|
"validator_client",
|
|
"account_manager",
|
|
"lighthouse",
|
|
"lighthouse/environment"
|
|
]
|
|
|
|
[patch]
|
|
[patch.crates-io]
|
|
tree_hash = { path = "eth2/utils/tree_hash" }
|
|
tree_hash_derive = { path = "eth2/utils/tree_hash_derive" }
|
|
eth2_ssz = { path = "eth2/utils/ssz" }
|
|
eth2_ssz_derive = { path = "eth2/utils/ssz_derive" }
|
|
eth2_ssz_types = { path = "eth2/utils/ssz_types" }
|
|
eth2_hashing = { path = "eth2/utils/eth2_hashing" }
|
|
web3 = { git = "https://github.com/tomusdrw/rust-web3" }
|