diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2007-12-12 17:09:50 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-12 17:09:50 +0000 |
| commit | 4341d7949eaf333bba5e0c49ac85af1492974292 (patch) | |
| tree | 6b75a378c7de73a2f936f505918486716648ef12 /src/core | |
| parent | 2bf343514358360df1bae483526b3855c3b2fcf9 (diff) | |
| download | nginx-4341d7949eaf333bba5e0c49ac85af1492974292.tar.gz nginx-4341d7949eaf333bba5e0c49ac85af1492974292.tar.bz2 | |
r1573, r1574, r1575 merge:
ngx_md5.h and ngx_sha1.h
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/ngx_md5.h | 40 | ||||
| -rw-r--r-- | src/core/ngx_sha1.h | 30 |
2 files changed, 70 insertions, 0 deletions
diff --git a/src/core/ngx_md5.h b/src/core/ngx_md5.h new file mode 100644 index 000000000..eeba97e86 --- /dev/null +++ b/src/core/ngx_md5.h @@ -0,0 +1,40 @@ + +/* + * Copyright (C) Igor Sysoev + */ + + +#ifndef _NGX_MD5_H_INCLUDED_ +#define _NGX_MD5_H_INCLUDED_ + + +#include <ngx_config.h> +#include <ngx_core.h> + + +#if (NGX_HAVE_OPENSSL_MD5_H) +#include <openssl/md5.h> +#else +#include <md5.h> +#endif + + +typedef MD5_CTX ngx_md5_t; + + +#if (NGX_OPENSSL_MD5) + +#define ngx_md5_init MD5_Init +#define ngx_md5_update MD5_Update +#define ngx_md5_final MD5_Final + +#else + +#define ngx_md5_init MD5Init +#define ngx_md5_update MD5Update +#define ngx_md5_final MD5Final + +#endif + + +#endif /* _NGX_MD5_H_INCLUDED_ */ diff --git a/src/core/ngx_sha1.h b/src/core/ngx_sha1.h new file mode 100644 index 000000000..78f52c5ce --- /dev/null +++ b/src/core/ngx_sha1.h @@ -0,0 +1,30 @@ + +/* + * Copyright (C) Igor Sysoev + */ + + +#ifndef _NGX_SHA1_H_INCLUDED_ +#define _NGX_SHA1_H_INCLUDED_ + + +#include <ngx_config.h> +#include <ngx_core.h> + + +#if (NGX_HAVE_OPENSSL_SHA1_H) +#include <openssl/sha.h> +#else +#include <sha.h> +#endif + + +typedef SHA_CTX ngx_sha1_t; + + +#define ngx_sha1_init SHA1_Init +#define ngx_sha1_update SHA1_Update +#define ngx_sha1_final SHA1_Final + + +#endif /* _NGX_SHA1_H_INCLUDED_ */ |
