| 227 | #ifdef TEST_MD5 /* { */ |
| 228 | |
| 229 | void get_md5(uchar *out, const uchar *input, int n) |
| 230 | { |
| 231 | md_context ctx; |
| 232 | md5_begin(&ctx); |
| 233 | md5_update(&ctx, input, n); |
| 234 | md5_result(&ctx, out); |
| 235 | } |
| 236 | |
| 237 | #include <stdlib.h> |
| 238 | #include <stdio.h> |
no test coverage detected