Tilde Friends
bip39.h
1#pragma once
2
10#include <stdbool.h>
11#include <stddef.h>
12#include <stdint.h>
13
22bool tf_bip39_bytes_to_words(const uint8_t* bytes, size_t bytes_size, char* out_words, size_t words_size);
23
31bool tf_bip39_words_to_bytes(const char* words, uint8_t* out_bytes, size_t bytes_size);
32
bool tf_bip39_bytes_to_words(const uint8_t *bytes, size_t bytes_size, char *out_words, size_t words_size)
bool tf_bip39_words_to_bytes(const char *words, uint8_t *out_bytes, size_t bytes_size)