src/os/win32/ngx_user.c - nginx source code

Functions defined

Source code

  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>


  7. #if (NGX_CRYPT)

  8. ngx_int_t
  9. ngx_libc_crypt(ngx_pool_t *pool, u_char *key, u_char *salt, u_char **encrypted)
  10. {
  11.     /* STUB: a plain text password */

  12.     *encrypted = key;

  13.     return NGX_OK;
  14. }

  15. #endif /* NGX_CRYPT */