| 157 | } |
| 158 | |
| 159 | static void input_own_target(const u8 *generator, u8 *residue, const u8 *target, size_t len) |
| 160 | { |
| 161 | for (size_t i = 0; i < len; i++) { |
| 162 | input_fe(generator, residue, target[i], len); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | /* Helper to verify codex32 checksum */ |
| 167 | static bool checksum_verify(const char *hrp, const char *codex_datastr, |
no test coverage detected