comparison src/core/ngx_md5.h @ 1572:a3c0b8dadc16

ngx_md5.h
author Igor Sysoev <igor@sysoev.ru>
date Tue, 16 Oct 2007 11:59:47 +0000
parents
children 27d4ed42e49d
comparison
equal deleted inserted replaced
1571:f3a941d0d666 1572:a3c0b8dadc16
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #ifndef _NGX_MD5_H_INCLUDED_
8 #define _NGX_MD5_H_INCLUDED_
9
10
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13
14
15 #if (NGX_HAVE_OPENSSL_MD5_H)
16 #include <openssl/md5.h>
17 #else
18 #include <md5.h>
19 #endif
20
21
22 typedef MD5_CTX ngx_md5_t;
23
24
25 #if (NGX_OPENSSL_MD5)
26
27 #define ngx_md5_init MD5_Init
28 #define ngx_md5_update MD5_Update
29 #define ngx_md5_final MD5_Final
30
31 #else
32
33 #define ngx_md5_init MD5Init
34 #define ngx_md5_update MD5Update
35 #define ngx_md5_final MD5Final
36
37 #endif
38
39
40 #endif /* _NGX_MD5_H_INCLUDED_ */