| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- /**
- * Copyright (c) 2013-2014 Tomas Dzetkulic
- * Copyright (c) 2013-2014 Pavol Rusnak
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included
- * in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
- * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
- * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
- * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- * OTHER DEALINGS IN THE SOFTWARE.
- */
- #include <stdbool.h>
- #include <string.h>
- #include "bip39.h"
- #include "hmac.h"
- #include "memzero.h"
- #include "options.h"
- #include "pbkdf2.h"
- #include "rand.h"
- #include "sha2.h"
- #if USE_BIP39_CACHE
- static int bip39_cache_index = 0;
- static CONFIDENTIAL struct {
- bool set;
- char mnemonic[256];
- char passphrase[64];
- uint8_t seed[512 / 8];
- } bip39_cache[BIP39_CACHE_SIZE];
- void bip39_cache_clear(void) {
- memzero(bip39_cache, sizeof(bip39_cache));
- bip39_cache_index = 0;
- }
- #endif
- const char* mnemonic_generate(int strength) {
- if(strength % 32 || strength < 128 || strength > 256) {
- return 0;
- }
- uint8_t data[32] = {0};
- random_buffer(data, 32);
- const char* r = mnemonic_from_data(data, strength / 8);
- memzero(data, sizeof(data));
- return r;
- }
- static CONFIDENTIAL char mnemo[24 * 10];
- const char* mnemonic_from_data(const uint8_t* data, int len) {
- if(len % 4 || len < 16 || len > 32) {
- return 0;
- }
- uint8_t bits[32 + 1] = {0};
- sha256_Raw(data, len, bits);
- // checksum
- bits[len] = bits[0];
- // data
- memcpy(bits, data, len);
- int mlen = len * 3 / 4;
- int i = 0, j = 0, idx = 0;
- char* p = mnemo;
- for(i = 0; i < mlen; i++) {
- idx = 0;
- for(j = 0; j < 11; j++) {
- idx <<= 1;
- idx += (bits[(i * 11 + j) / 8] & (1 << (7 - ((i * 11 + j) % 8)))) > 0;
- }
- strcpy(p, BIP39_WORDLIST_ENGLISH[idx]);
- p += strlen(BIP39_WORDLIST_ENGLISH[idx]);
- *p = (i < mlen - 1) ? ' ' : 0;
- p++;
- }
- memzero(bits, sizeof(bits));
- return mnemo;
- }
- void mnemonic_clear(void) {
- memzero(mnemo, sizeof(mnemo));
- }
- int mnemonic_to_bits(const char* mnemonic, uint8_t* bits) {
- if(!mnemonic) {
- return 0;
- }
- uint32_t i = 0, n = 0;
- while(mnemonic[i]) {
- if(mnemonic[i] == ' ') {
- n++;
- }
- i++;
- }
- n++;
- // check that number of words is valid for BIP-39:
- // (a) between 128 and 256 bits of initial entropy (12 - 24 words)
- // (b) number of bits divisible by 33 (1 checksum bit per 32 input bits)
- // - that is, (n * 11) % 33 == 0, so n % 3 == 0
- if(n < 12 || n > 24 || (n % 3)) {
- return 0;
- }
- char current_word[10] = {0};
- uint32_t j = 0, ki = 0, bi = 0;
- uint8_t result[32 + 1] = {0};
- memzero(result, sizeof(result));
- i = 0;
- while(mnemonic[i]) {
- j = 0;
- while(mnemonic[i] != ' ' && mnemonic[i] != 0) {
- if(j >= sizeof(current_word) - 1) {
- return 0;
- }
- current_word[j] = mnemonic[i];
- i++;
- j++;
- }
- current_word[j] = 0;
- if(mnemonic[i] != 0) {
- i++;
- }
- int k = mnemonic_find_word(current_word);
- if(k < 0) { // word not found
- return 0;
- }
- for(ki = 0; ki < 11; ki++) {
- if(k & (1 << (10 - ki))) {
- result[bi / 8] |= 1 << (7 - (bi % 8));
- }
- bi++;
- }
- }
- if(bi != n * 11) {
- return 0;
- }
- memcpy(bits, result, sizeof(result));
- memzero(result, sizeof(result));
- // returns amount of entropy + checksum BITS
- return n * 11;
- }
- int mnemonic_check(const char* mnemonic) {
- uint8_t bits[32 + 1] = {0};
- int mnemonic_bits_len = mnemonic_to_bits(mnemonic, bits);
- if(mnemonic_bits_len != (12 * 11) && mnemonic_bits_len != (18 * 11) &&
- mnemonic_bits_len != (24 * 11)) {
- return 0;
- }
- int words = mnemonic_bits_len / 11;
- uint8_t checksum = bits[words * 4 / 3];
- sha256_Raw(bits, words * 4 / 3, bits);
- if(words == 12) {
- return (bits[0] & 0xF0) == (checksum & 0xF0); // compare first 4 bits
- } else if(words == 18) {
- return (bits[0] & 0xFC) == (checksum & 0xFC); // compare first 6 bits
- } else if(words == 24) {
- return bits[0] == checksum; // compare 8 bits
- }
- return 0;
- }
- // passphrase must be at most 256 characters otherwise it would be truncated
- void mnemonic_to_seed(
- const char* mnemonic,
- const char* passphrase,
- uint8_t seed[512 / 8],
- void (*progress_callback)(uint32_t current, uint32_t total)) {
- int mnemoniclen = strlen(mnemonic);
- int passphraselen = strlen(passphrase);
- if(passphraselen > 256) passphraselen = 256;
- #if USE_BIP39_CACHE
- // check cache
- if(mnemoniclen < 256 && passphraselen < 64) {
- for(int i = 0; i < BIP39_CACHE_SIZE; i++) {
- if(!bip39_cache[i].set) continue;
- if(strcmp(bip39_cache[i].mnemonic, mnemonic) != 0) continue;
- if(strcmp(bip39_cache[i].passphrase, passphrase) != 0) continue;
- // found the correct entry
- memcpy(seed, bip39_cache[i].seed, 512 / 8);
- return;
- }
- }
- #endif
- uint8_t salt[8 + 256] = {0};
- memcpy(salt, "mnemonic", 8);
- memcpy(salt + 8, passphrase, passphraselen);
- static CONFIDENTIAL PBKDF2_HMAC_SHA512_CTX pctx;
- pbkdf2_hmac_sha512_Init(
- &pctx, (const uint8_t*)mnemonic, mnemoniclen, salt, passphraselen + 8, 1);
- if(progress_callback) {
- progress_callback(0, BIP39_PBKDF2_ROUNDS);
- }
- for(int i = 0; i < 16; i++) {
- pbkdf2_hmac_sha512_Update(&pctx, BIP39_PBKDF2_ROUNDS / 16);
- if(progress_callback) {
- progress_callback((i + 1) * BIP39_PBKDF2_ROUNDS / 16, BIP39_PBKDF2_ROUNDS);
- }
- }
- pbkdf2_hmac_sha512_Final(&pctx, seed);
- memzero(salt, sizeof(salt));
- #if USE_BIP39_CACHE
- // store to cache
- if(mnemoniclen < 256 && passphraselen < 64) {
- bip39_cache[bip39_cache_index].set = true;
- strcpy(bip39_cache[bip39_cache_index].mnemonic, mnemonic);
- strcpy(bip39_cache[bip39_cache_index].passphrase, passphrase);
- memcpy(bip39_cache[bip39_cache_index].seed, seed, 512 / 8);
- bip39_cache_index = (bip39_cache_index + 1) % BIP39_CACHE_SIZE;
- }
- #endif
- }
- // binary search for finding the word in the wordlist
- int mnemonic_find_word(const char* word) {
- int lo = 0, hi = BIP39_WORD_COUNT - 1;
- while(lo <= hi) {
- int mid = lo + (hi - lo) / 2;
- int cmp = strcmp(word, BIP39_WORDLIST_ENGLISH[mid]);
- if(cmp == 0) {
- return mid;
- }
- if(cmp > 0) {
- lo = mid + 1;
- } else {
- hi = mid - 1;
- }
- }
- return -1;
- }
- const char* mnemonic_complete_word(const char* prefix, int len) {
- // we need to perform linear search,
- // because we want to return the first match
- for(int i = 0; i < BIP39_WORD_COUNT; i++) {
- if(strncmp(BIP39_WORDLIST_ENGLISH[i], prefix, len) == 0) {
- return BIP39_WORDLIST_ENGLISH[i];
- }
- }
- return NULL;
- }
- const char* mnemonic_get_word(int index) {
- if(index >= 0 && index < BIP39_WORD_COUNT) {
- return BIP39_WORDLIST_ENGLISH[index];
- } else {
- return NULL;
- }
- }
- uint32_t mnemonic_word_completion_mask(const char* prefix, int len) {
- if(len <= 0) {
- return 0x3ffffff; // all letters (bits 1-26 set)
- }
- uint32_t res = 0;
- for(int i = 0; i < BIP39_WORD_COUNT; i++) {
- const char* word = BIP39_WORDLIST_ENGLISH[i];
- if(strncmp(word, prefix, len) == 0 && word[len] >= 'a' && word[len] <= 'z') {
- res |= 1 << (word[len] - 'a');
- }
- }
- return res;
- }
|