mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-07 02:36:47 +00:00
Merge develop into confidential MPT
This commit is contained in:
@@ -17,10 +17,10 @@ namespace xrpl {
|
||||
class SecretKey
|
||||
{
|
||||
public:
|
||||
static constexpr std::size_t kSIZE = 32;
|
||||
static constexpr std::size_t kSize = 32;
|
||||
|
||||
private:
|
||||
std::uint8_t buf_[kSIZE]{};
|
||||
std::uint8_t buf_[kSize]{};
|
||||
|
||||
public:
|
||||
using const_iterator = std::uint8_t const*;
|
||||
@@ -37,7 +37,7 @@ public:
|
||||
|
||||
~SecretKey();
|
||||
|
||||
SecretKey(std::array<std::uint8_t, kSIZE> const& data);
|
||||
SecretKey(std::array<std::uint8_t, kSize> const& data);
|
||||
SecretKey(Slice const& slice);
|
||||
|
||||
[[nodiscard]] std::uint8_t const*
|
||||
|
||||
Reference in New Issue
Block a user