commit | a03fa3666f8b01211535eebac162f6ec54dd6b82 | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Mon Dec 17 21:06:17 2007 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Mon Dec 17 21:06:17 2007 +0000 |
tree | 7f7de91657fd8bbe40c5e329b3488dd6a1fc4b78 | |
parent | 249cbe75b44dd14fab41217377bdc45032762f6f [diff] [blame] |
replace ngx_md5_text() with ngx_hex_dump()
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 1bca791..4fe5cb6 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h
@@ -141,7 +141,7 @@ time_t ngx_atotm(u_char *line, size_t n); ngx_int_t ngx_hextoi(u_char *line, size_t n); -void ngx_md5_text(u_char *text, u_char *md5); +u_char *ngx_hex_dump(u_char *dst, u_char *src, size_t len); #define ngx_base64_encoded_length(len) (((len + 2) / 3) * 4)