Skip to content

src/crypto/bip39/bip39_types.hpp

Namespaces

Name
sgns
sgns::crypto
sgns::crypto::bip39
sgns::crypto::bip39::constants

Types

Name
using base::Buffer Bip39Seed

Attributes

Name
size_t BIP39_SEED_LEN_512

Types Documentation

using Bip39Seed

using sgns::crypto::bip39::Bip39Seed = base::Buffer;

Attributes Documentation

variable BIP39_SEED_LEN_512

size_t BIP39_SEED_LEN_512 = 64u;

Source code

#ifndef SUPERGENIUS_BIP39_TYPES_HPP
#define SUPERGENIUS_BIP39_TYPES_HPP

#include "base/buffer.hpp"

namespace sgns::crypto::bip39 {
  namespace constants {
    constexpr size_t BIP39_SEED_LEN_512 = 64u;
  }  // namespace constants

  using Bip39Seed = base::Buffer;
}  // namespace sgns::crypto::bip39

#endif  // SUPERGENIUS_BIP39_TYPES_HPP

Updated on 2026-03-04 at 13:10:44 -0800