Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
supermassive committed Dec 2, 2024
1 parent 0458161 commit ee9e32c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions components/brave_wallet/browser/internal/hd_key_ed25519.cc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "brave/components/brave_wallet/browser/internal/hd_key_ed25519.h"

#include <utility>
#include <vector>

#include "base/check.h"
#include "base/containers/span.h"
Expand Down
10 changes: 5 additions & 5 deletions components/brave_wallet/browser/internal/hd_key_ed25519.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@

namespace brave_wallet {

constexpr size_t kEd25519SecretKeySize = 32;
constexpr size_t kEd25519PublicKeySize = 32;
constexpr size_t kEd25519KeypairSize =
inline constexpr size_t kEd25519SecretKeySize = 32;
inline constexpr size_t kEd25519PublicKeySize = 32;
inline constexpr size_t kEd25519KeypairSize =
kEd25519SecretKeySize + kEd25519PublicKeySize;
constexpr size_t kEd25519ChainCodeSize = 32;
constexpr size_t kEd25519SignatureSize = 64;
inline constexpr size_t kEd25519ChainCodeSize = 32;
inline constexpr size_t kEd25519SignatureSize = 64;

// This class implements basic EdDSA over ed25519 functionality of SLIP-0010
// spec with 32 bytes private key and only allows private key derivation with
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

#include "brave/components/brave_wallet/browser/internal/hd_key_ed25519.h"

#include <vector>

#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "brave/components/brave_wallet/common/hex_utils.h"
Expand Down
1 change: 1 addition & 0 deletions components/brave_wallet/common/DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ specific_include_rules = {
],
"hash_utils\.cc": [
"+brave/third_party/bitcoin-core/src/src/crypto/ripemd160.h",
"+third_party/boringssl",
],
"zcash_utils\.cc": [
"+brave/third_party/bitcoin-core/src/src/base58.h",
Expand Down

0 comments on commit ee9e32c

Please sign in to comment.