comparison src/core/ngx_crypt.h @ 3922:9c057d5e1c27

"$apr1", "{PLAIN}", and "{SSHA}" password methods in auth basic module patch by Maxim Dounin
author Igor Sysoev <igor@sysoev.ru>
date Mon, 16 May 2011 14:54:50 +0000
parents
children d620f497c50f
comparison
equal deleted inserted replaced
3921:bab3488bd113 3922:9c057d5e1c27
1
2 /*
3 * Copyright (C) Igor Sysoev
4 */
5
6
7 #ifndef _NGX_CRYPT_H_INCLUDED_
8 #define _NGX_CRYPT_H_INCLUDED_
9
10
11 #include <ngx_config.h>
12 #include <ngx_core.h>
13
14
15 ngx_int_t ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
16 u_char **encrypted);
17
18
19 #endif /* _NGX_CRYPT_H_INCLUDED_ */