2024-01-02 20:25:11 +00:00
|
|
|
#pragma once
|
|
|
|
|
2024-02-20 21:41:37 -05:00
|
|
|
/**
|
|
|
|
** \defgroup bip39_words BIP39 Word list
|
|
|
|
** The word list used by \ref bip39.
|
|
|
|
** @{
|
|
|
|
*/
|
|
|
|
|
2024-02-15 23:35:01 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
k_bip39_words_count = 2048
|
|
|
|
};
|
2024-03-04 12:23:00 -05:00
|
|
|
|
|
|
|
/** An array of words used for BIP39-encoding a key. */
|
2024-01-02 20:25:11 +00:00
|
|
|
extern const char* k_bip39_words[k_bip39_words_count];
|
2024-02-20 21:41:37 -05:00
|
|
|
|
|
|
|
/** @} */
|