mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
A Validator Manifest allows validators to use a generated ed25519 secret key as a master key for generating new validator public/secret key pairs. Using this mechanism, rippled instances trust the master ed25519 public key instead of the now-ephemeral validator public key. Through a new message and propagation scheme, this lets a validator change its ephemeral public key without requiring that all rippled instances on the network restart after maintaining the configuration file.
37 lines
1.6 KiB
C++
37 lines
1.6 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2012, 2013 Ripple Labs Inc.
|
|
|
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#include <BeastConfig.h>
|
|
|
|
#include <ripple/overlay/impl/ConnectAttempt.cpp>
|
|
#include <ripple/overlay/impl/Manifest.cpp>
|
|
#include <ripple/overlay/impl/Message.cpp>
|
|
#include <ripple/overlay/impl/OverlayImpl.cpp>
|
|
#include <ripple/overlay/impl/PeerImp.cpp>
|
|
#include <ripple/overlay/impl/PeerSet.cpp>
|
|
#include <ripple/overlay/impl/TMHello.cpp>
|
|
|
|
#include <ripple/overlay/tests/manifest_test.cpp>
|
|
#include <ripple/overlay/tests/short_read.test.cpp>
|
|
#include <ripple/overlay/tests/TMHello.test.cpp>
|
|
|
|
#if DOXYGEN
|
|
#include <ripple/overlay/README.md>
|
|
#endif
|