blob: cb01c9203ccbc3137442954fb803b506aff4d77f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/*
* This file and its header file are for translating Electrum-style word lists
* into their equivalent byte representations for cross-compatibility with
* that method of "backing up" one's wallet keys.
*/
#include <string>
#include <map>
#include "crypto/crypto.h" // for declaration of crypto::secret_key
#include "crypto/electrum-words.h"
namespace crypto
{
namespace ElectrumWords
{
bool words_to_bytes(const std::string& words, crypto::secret_key& dst)
{
return false;
}
bool bytes_to_words(const crypto::secret_key& src, std::string& words)
{
return false;
}
} // namespace ElectrumWords
} // namespace crypto
|