view src/core/ngx_crypt.h @ 5636:54f847c88cf7

Core: fixed hash to actually try max_size. Previously, maximum size of a hash table built was (max_size - 1).
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 31 Mar 2014 21:40:35 +0400
parents d620f497c50f
children
line wrap: on
line source


/*
 * Copyright (C) Igor Sysoev
 * Copyright (C) Nginx, Inc.
 */


#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_ */