fix debugging
This commit is contained in:
@ -38,10 +38,10 @@ int main(int argc, char **argv) {
|
||||
md5_state_t state;
|
||||
|
||||
md5_init(&state);
|
||||
md5_append(&state, buf, strlen(buf));
|
||||
md5_append(&state, (const unsigned char *) buf, strlen(buf));
|
||||
|
||||
char c[16];
|
||||
md5_finish(&state, c);
|
||||
md5_finish(&state, (unsigned char *) c);
|
||||
|
||||
sprintf(buf, "%s %d %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x",
|
||||
dynid, t,
|
||||
|
Reference in New Issue
Block a user