| 108 | /* AUTOGENERATED MOCKS END */ |
| 109 | |
| 110 | static struct secret secret_from_hex(const char *hex) |
| 111 | { |
| 112 | struct secret s; |
| 113 | hex += 2; |
| 114 | if (!hex_decode(hex, strlen(hex), &s, sizeof(s))) |
| 115 | abort(); |
| 116 | return s; |
| 117 | } |
| 118 | |
| 119 | int main(int argc, char *argv[]) |
| 120 | { |
no test coverage detected