mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-30 07:55:51 +00:00
Remove RippleAddress:
The RippleAddress class was used to represent a number of fundamentally different types: account public keys, account secret keys, node public keys, node secret keys, seeds and generators. The class is replaced by the following types: * PublicKey for account and node public keys * SecretKey for account and node private keys * Generator for generating secp256k1 accounts * Seed for account, node and generator seeds
This commit is contained in:
@@ -29,12 +29,24 @@
|
||||
|
||||
namespace ripple {
|
||||
|
||||
Blob generateRootDeterministicPublicKey (const uint128& passPhrase);
|
||||
uint256 generateRootDeterministicPrivateKey (const uint128& passPhrase);
|
||||
Blob
|
||||
generateRootDeterministicPublicKey (
|
||||
uint128 const& seed);
|
||||
|
||||
Blob generatePublicDeterministicKey (Blob const& generator, int n);
|
||||
uint256 generatePrivateDeterministicKey (
|
||||
Blob const& family, uint128 const& seed, int n);
|
||||
uint256
|
||||
generateRootDeterministicPrivateKey (
|
||||
uint128 const& seed);
|
||||
|
||||
Blob
|
||||
generatePublicDeterministicKey (
|
||||
Blob const& generator,
|
||||
int n);
|
||||
|
||||
uint256
|
||||
generatePrivateDeterministicKey (
|
||||
Blob const& family,
|
||||
uint128 const& seed,
|
||||
int n);
|
||||
|
||||
} // ripple
|
||||
|
||||
|
||||
Reference in New Issue
Block a user