mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix C++ style issues.
* Restrict files to 80 columns. * Function names in GenerateDeterministicKey now start with lower case. * Remove deprecated boost::format calls.
This commit is contained in:
@@ -29,11 +29,12 @@
|
||||
|
||||
namespace ripple {
|
||||
|
||||
Blob GenerateRootDeterministicPublicKey (const uint128& passPhrase);
|
||||
uint256 GenerateRootDeterministicPrivateKey (const uint128& passPhrase);
|
||||
Blob generateRootDeterministicPublicKey (const uint128& passPhrase);
|
||||
uint256 generateRootDeterministicPrivateKey (const uint128& passPhrase);
|
||||
|
||||
Blob GeneratePublicDeterministicKey (Blob const& generator, int n);
|
||||
uint256 GeneratePrivateDeterministicKey (Blob const& family, uint128 const& seed, int n);
|
||||
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