| 101 | } |
| 102 | |
| 103 | void run(const u8 *data, size_t size) |
| 104 | { |
| 105 | const u8 *buf = tal_dup_arr(NULL, u8, data, size, 0); |
| 106 | |
| 107 | test_encrypt_decrypt_equality(buf); |
| 108 | test_decrypt_header(buf); |
| 109 | test_decrypt_body(buf); |
| 110 | |
| 111 | tal_free(buf); |
| 112 | } |
nothing calls this directly
no test coverage detected