Initial version.

This commit is contained in:
Igor Sysoev
2017-01-17 20:00:00 +03:00
commit 16cbf3c076
235 changed files with 56359 additions and 0 deletions

45
src/nxt_djb_hash.c Normal file
View File

@@ -0,0 +1,45 @@
/*
* Copyright (C) Igor Sysoev
* Copyright (C) NGINX, Inc.
*/
#include <nxt_main.h>
uint32_t
nxt_djb_hash(const void *data, size_t len)
{
uint32_t hash;
const u_char *p;
p = data;
hash = NXT_DJB_HASH_INIT;
while (len != 0) {
hash = nxt_djb_hash_add(hash, *p++);
len--;
}
return hash;
}
uint32_t
nxt_djb_hash_lowcase(const void *data, size_t len)
{
u_char c;
uint32_t hash;
const u_char *p;
p = data;
hash = NXT_DJB_HASH_INIT;
while (len != 0) {
c = *p++;
hash = nxt_djb_hash_add(hash, nxt_lowcase(c));
len--;
}
return hash;
}