summaryrefslogtreecommitdiffstats
path: root/usr.sbin/nginx/src/core/ngx_crypt.h
diff options
context:
space:
mode:
authorrobert <robert@openbsd.org>2011-09-22 23:38:25 +0000
committerrobert <robert@openbsd.org>2011-09-22 23:38:25 +0000
commitd2bbe503305ff6b033a901010508488faf7e9c70 (patch)
tree60b5dc346eedf872ca3ca83e9969454dd0120c0a /usr.sbin/nginx/src/core/ngx_crypt.h
parentimport of nginx 1.0.6 with a bundled libpcre needed for pcre to work (diff)
downloadwireguard-openbsd-d2bbe503305ff6b033a901010508488faf7e9c70.tar.xz
wireguard-openbsd-d2bbe503305ff6b033a901010508488faf7e9c70.zip
thank you CVS for missing the "core" directory
Diffstat (limited to 'usr.sbin/nginx/src/core/ngx_crypt.h')
-rw-r--r--usr.sbin/nginx/src/core/ngx_crypt.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/usr.sbin/nginx/src/core/ngx_crypt.h b/usr.sbin/nginx/src/core/ngx_crypt.h
new file mode 100644
index 00000000000..45ef81d4b0e
--- /dev/null
+++ b/usr.sbin/nginx/src/core/ngx_crypt.h
@@ -0,0 +1,19 @@
+
+/*
+ * Copyright (C) Igor Sysoev
+ */
+
+
+#ifndef _NGX_CRYPT_H_INCLUDED_
+#define _NGX_CRYPT_H_INCLUDED_
+
+
+#include <ngx_config.h>
+#include <ngx_core.h>
+
+
+ngx_int_t ngx_crypt(ngx_pool_t *pool, u_char *key, u_char *salt,
+ u_char **encrypted);
+
+
+#endif /* _NGX_CRYPT_H_INCLUDED_ */