2014-06-04 22:59:47 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2014-06-05 03:08:35 +00:00
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
|
|
|
#include <boost/algorithm/string.hpp>
|
2014-06-04 22:59:47 +00:00
|
|
|
#include "crypto/crypto.h" // for declaration of crypto::secret_key
|
|
|
|
|
|
|
|
#include "crypto/electrum-words.h"
|
|
|
|
|
|
|
|
namespace crypto
|
|
|
|
{
|
|
|
|
namespace ElectrumWords
|
|
|
|
{
|
|
|
|
|
2014-06-05 03:08:35 +00:00
|
|
|
/* convert words to bytes, 3 words -> 4 bytes
|
|
|
|
* returns:
|
|
|
|
* false if not a multiple of 3 words, or if a words is not in the
|
|
|
|
* words list
|
|
|
|
*
|
|
|
|
* true otherwise
|
|
|
|
*/
|
2014-06-04 22:59:47 +00:00
|
|
|
bool words_to_bytes(const std::string& words, crypto::secret_key& dst)
|
|
|
|
{
|
2014-06-05 03:08:35 +00:00
|
|
|
int n = NUMWORDS; // hardcoded because this is what electrum uses
|
|
|
|
|
|
|
|
std::vector<std::string> wlist;
|
|
|
|
|
|
|
|
boost::split(wlist, words, boost::is_any_of(" "));
|
|
|
|
|
|
|
|
// error on non-compliant word list
|
|
|
|
if (wlist.size() != 12 && wlist.size() != 24) return false;
|
|
|
|
|
2014-06-06 18:18:11 +00:00
|
|
|
for (unsigned int i=0; i < wlist.size() / 3; i++)
|
2014-06-05 03:08:35 +00:00
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
uint32_t w1, w2, w3;
|
|
|
|
|
|
|
|
// verify all three words exist in the word list
|
|
|
|
if (wordsMap.count(wlist[i*3]) == 0 ||
|
|
|
|
wordsMap.count(wlist[i*3 + 1]) == 0 ||
|
|
|
|
wordsMap.count(wlist[i*3 + 2]) == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
w1 = wordsMap.at(wlist[i*3]);
|
2014-06-06 12:20:54 +00:00
|
|
|
w2 = wordsMap.at(wlist[i*3 + 1]);
|
|
|
|
w3 = wordsMap.at(wlist[i*3 + 2]);
|
2014-06-05 03:08:35 +00:00
|
|
|
|
|
|
|
val = w1 + n * ((w2 - w1) % n) + n * n * ((w3 - w2) % n);
|
|
|
|
|
2014-06-06 18:18:11 +00:00
|
|
|
memcpy(&dst.data + i * 4, &val, 4); // copy 4 bytes to position
|
2014-06-05 03:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (wlist.size() == 12)
|
|
|
|
{
|
2014-06-06 18:18:11 +00:00
|
|
|
memcpy(&dst.data, &dst.data + 16, 16); // if electrum 12-word seed, duplicate
|
2014-06-05 03:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2014-06-04 22:59:47 +00:00
|
|
|
}
|
2014-06-05 03:08:35 +00:00
|
|
|
|
|
|
|
/* convert bytes to words, 4 bytes-> 3 words
|
|
|
|
* returns:
|
|
|
|
* false if wrong number of bytes (shouldn't be possible)
|
|
|
|
* true otherwise
|
|
|
|
*/
|
2014-06-04 22:59:47 +00:00
|
|
|
bool bytes_to_words(const crypto::secret_key& src, std::string& words)
|
|
|
|
{
|
2014-06-05 03:08:35 +00:00
|
|
|
int n = NUMWORDS; // hardcoded because this is what electrum uses
|
|
|
|
|
|
|
|
if (sizeof(src.data) % 4 != 0) return false;
|
|
|
|
|
|
|
|
// 8 bytes -> 3 words. 8 digits base 16 -> 3 digits base 1626
|
2014-06-06 18:18:11 +00:00
|
|
|
for (unsigned int i=0; i < sizeof(src.data)/4; i++, words += ' ')
|
2014-06-05 03:08:35 +00:00
|
|
|
{
|
|
|
|
uint32_t w1, w2, w3;
|
|
|
|
|
|
|
|
uint32_t val;
|
|
|
|
|
2014-06-06 19:45:21 +00:00
|
|
|
memcpy(&val, (src.data) + (i * 4), 4);
|
2014-06-05 03:08:35 +00:00
|
|
|
|
|
|
|
w1 = val % n;
|
|
|
|
w2 = ((val / n) + w1) % n;
|
|
|
|
w3 = (((val / n) / n) + w2) % n;
|
|
|
|
|
|
|
|
words += wordsArray[w1];
|
|
|
|
words += ' ';
|
|
|
|
words += wordsArray[w2];
|
|
|
|
words += ' ';
|
|
|
|
words += wordsArray[w3];
|
|
|
|
}
|
2014-06-04 22:59:47 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace ElectrumWords
|
|
|
|
|
|
|
|
} // namespace crypto
|