Test body decryption of arbitrary bytes. */
| 94 | |
| 95 | /* Test body decryption of arbitrary bytes. */ |
| 96 | static void test_decrypt_body(const u8 *buf) |
| 97 | { |
| 98 | struct crypto_state cs_in = init_cs_in; |
| 99 | |
| 100 | cryptomsg_decrypt_body(buf, &cs_in, buf); |
| 101 | } |
| 102 | |
| 103 | void run(const u8 *data, size_t size) |
| 104 | { |
no test coverage detected