diff options
author | dec05eba <dec05eba@protonmail.com> | 2019-03-08 00:47:10 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-07-25 14:36:46 +0200 |
commit | 784cfbe5d88042756dac21fec4b6dac5f1db414e (patch) | |
tree | f47a25a7001980d1bdb35af6d2c6419c8fe944c9 /src | |
parent | 6bef90418f677f5b971a7a597126d743f8198046 (diff) |
Modify hash algorithm
Diffstat (limited to 'src')
-rw-r--r-- | src/std/hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/std/hash.c b/src/std/hash.c index 603149a..8bd08d9 100644 --- a/src/std/hash.c +++ b/src/std/hash.c @@ -5,7 +5,7 @@ usize amal_hash_string(const u8 *data, usize size) { result = 0xdec05eba; while(size) { - result ^= *data; + result = ((result << 5) + result) ^ *data; ++data; --size; } |