| 101 | /* AUTOGENERATED MOCKS END */ |
| 102 | |
| 103 | static struct secret secret_from_hex(const char *hex) |
| 104 | { |
| 105 | struct secret s; |
| 106 | hex += 2; |
| 107 | if (!hex_decode(hex, strlen(hex), &s, sizeof(s))) |
| 108 | abort(); |
| 109 | return s; |
| 110 | } |
| 111 | |
| 112 | int main(int argc, char *argv[]) |
| 113 | { |
no test coverage detected