comparison src/core/ngx_sha1.h @ 1573:8f911d6d0d70

ngx_sha1.h
author Igor Sysoev <igor@sysoev.ru>
date Tue, 16 Oct 2007 12:16:58 +0000
parents
children 27d4ed42e49d
comparison
equal deleted inserted replaced
1572:a3c0b8dadc16 1573:8f911d6d0d70
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #ifndef _NGX_SHA1_H_INCLUDED_
8 #define _NGX_SHA1_H_INCLUDED_
9
10
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13
14
15 #if (NGX_HAVE_OPENSSL_SHA1_H)
16 #include <openssl/sha.h>
17 #else
18 #include <sha.h>
19 #endif
20
21
22 typedef SHA_CTX ngx_sha1_t;
23
24
25 #define ngx_sha1_init SHA1_Init
26 #define ngx_sha1_update SHA1_Update
27 #define ngx_sha1_final SHA1_Final
28
29
30 #endif /* _NGX_SHA1_H_INCLUDED_ */