-
-
Notifications
You must be signed in to change notification settings - Fork 661
/
slip39.c
151 lines (133 loc) · 4.07 KB
/
slip39.c
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/**
* This file is part of the TREZOR project, https://trezor.io/
*
* Copyright (c) SatoshiLabs
*
* 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 "slip39.h"
#include <stdio.h>
#include <string.h>
#include "slip39_wordlist.h"
/**
* Returns word at position `index`.
*/
const char* get_word(uint16_t index) {
if (index >= SLIP39_WORD_COUNT) {
return NULL;
}
return SLIP39_WORDLIST[index];
}
/**
* Finds the index of a given word.
* Returns true on success and stores result in `index`.
*/
bool word_index(uint16_t* index, const char* word, uint8_t word_length) {
uint16_t lo = 0;
uint16_t hi = SLIP39_WORD_COUNT;
uint16_t mid = 0;
while ((hi - lo) > 1) {
mid = (hi + lo) / 2;
if (strncmp(SLIP39_WORDLIST[mid], word, word_length) > 0) {
hi = mid;
} else {
lo = mid;
}
}
if (strncmp(SLIP39_WORDLIST[lo], word, word_length) != 0) {
return false;
}
*index = lo;
return true;
}
/**
* Returns the index of the first sequence in words_button_seq[] which is not
* less than the given sequence. Returns SLIP39_WORD_COUNT if there is no such
* sequence.
*/
static uint16_t find_sequence(uint16_t sequence) {
if (sequence <= words_button_seq[0].sequence) {
return 0;
}
uint16_t lo = 0;
uint16_t hi = SLIP39_WORD_COUNT;
while (hi - lo > 1) {
uint16_t mid = (hi + lo) / 2;
if (words_button_seq[mid].sequence >= sequence) {
hi = mid;
} else {
lo = mid;
}
}
return hi;
}
/**
* Returns a word matching the button sequence prefix or NULL if no match is
* found.
*/
const char* button_sequence_to_word(uint16_t sequence) {
if (sequence == 0) {
return SLIP39_WORDLIST[words_button_seq[0].index];
}
uint16_t multiplier = 1;
while (sequence < 1000) {
sequence *= 10;
multiplier *= 10;
}
uint16_t i = find_sequence(sequence);
if (i >= SLIP39_WORD_COUNT ||
words_button_seq[i].sequence - sequence >= multiplier) {
return NULL;
}
return SLIP39_WORDLIST[words_button_seq[i].index];
}
/**
* Calculates which buttons on the T9 keyboard can still be pressed after the
* prefix was entered. Returns a 9-bit bitmask, where each bit specifies which
* buttons can be pressed (there are still words in this combination). The least
* significant bit corresponds to the first button.
*
* Example: 110000110 - second, third, eighth and ninth button still can be
* pressed.
*/
uint16_t slip39_word_completion_mask(uint16_t prefix) {
if (prefix >= 1000) {
// Four char prefix -> the mask is zero.
return 0;
}
// Determine the range of sequences [min, max), which have the given prefix.
uint16_t min = prefix;
uint16_t max = prefix + 1;
uint16_t divider = 1;
while (max <= 1000) {
min *= 10;
max *= 10;
divider *= 10;
}
divider /= 10;
// Determine the range we will be searching in words_button_seq[].
min = find_sequence(min);
max = find_sequence(max);
uint16_t bitmap = 0;
for (uint16_t i = min; i < max; ++i) {
uint8_t digit = (words_button_seq[i].sequence / divider) % 10;
bitmap |= 1 << (digit - 1);
}
return bitmap;
}