You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/bip32.h

26 lines
573 B

#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 private_key[32]; // private_key + chain_code have to
uint8_t chain_code[32]; // form a continuous 64 byte block
uint8_t public_key[33];
char address[35];
} XprvNode;
void xprv_from_seed(uint8_t *seed, int seed_len, XprvNode *out);
#define xprv_descent_prime(X, I) xprv_descent((X), ((I) | 0x80000000))
void xprv_descent(XprvNode *inout, uint32_t i);
void xprv_fill_public(XprvNode *xprv);
#endif