aboutsummaryrefslogtreecommitdiffstats
path: root/app/nginx/src/os/win32/ngx_user.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/nginx/src/os/win32/ngx_user.c')
-rw-r--r--app/nginx/src/os/win32/ngx_user.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/app/nginx/src/os/win32/ngx_user.c b/app/nginx/src/os/win32/ngx_user.c
deleted file mode 100644
index ea6da5a..0000000
--- a/app/nginx/src/os/win32/ngx_user.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (C) Igor Sysoev
- * Copyright (C) Nginx, Inc.
- */
-
-
-#include <ngx_config.h>
-#include <ngx_core.h>
-
-
-#if (NGX_CRYPT)
-
-ngx_int_t
-ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted)
-{
- /* STUB: a plain text password */
-
- *encrypted = key;
-
- return NGX_OK;
-}
-
-#endif /* NGX_CRYPT */