mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
35 lines
976 B
C
35 lines
976 B
C
#ifndef __BIP32_H__
|
|
#define __BIP32_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
// uint32_t version;
|
|
uint32_t depth;
|
|
uint32_t fingerprint;
|
|
uint32_t child_num;
|
|
uint8_t chain_code[32];
|
|
uint8_t private_key[32];
|
|
uint8_t public_key[33];
|
|
char address[35];
|
|
uint8_t version_byte;
|
|
} HDNode;
|
|
|
|
void hdnode_from_xpub(uint8_t version_byte, uint32_t depth, uint32_t fingerprint, uint32_t child_num, uint8_t *chain_code, uint8_t *public_key, HDNode *out);
|
|
|
|
void hdnode_from_xprv(uint8_t version_byte, uint32_t depth, uint32_t fingerprint, uint32_t child_num, uint8_t *chain_code, uint8_t *private_key, HDNode *out);
|
|
|
|
void hdnode_from_seed(uint8_t version_byte, uint8_t *seed, int seed_len, HDNode *out);
|
|
|
|
#define hdnode_private_ckd_prime(X, I) hdnode_private_ckd((X), ((I) | 0x80000000))
|
|
|
|
int hdnode_private_ckd(HDNode *inout, uint32_t i);
|
|
|
|
int hdnode_public_ckd(HDNode *inout, uint32_t i);
|
|
|
|
void hdnode_fill_public_key(HDNode *node);
|
|
|
|
void hdnode_fill_address(HDNode *node);
|
|
|
|
#endif
|