blob: 386911428accc72fb56295e5abd5a733b6b63fd4 [file] [log] [blame] [raw]
Igor Sysoev05db4152011-05-25 14:55:59 +00001
2/*
3 * Copyright (C) Igor Sysoev
NGINX team01f0bd52012-01-30 14:53:52 +00004 * Copyright (C) Nginx, Inc.
Igor Sysoev05db4152011-05-25 14:55:59 +00005 */
6
7
8#ifndef _NGX_CRYPT_H_INCLUDED_
9#define _NGX_CRYPT_H_INCLUDED_
10
11
12#include <ngx_config.h>
13#include <ngx_core.h>
14
15
16ngx_int_t ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
17 u_char **encrypted);
18
19
20#endif /* _NGX_CRYPT_H_INCLUDED_ */