mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-22 05:21:49 +03:00
ff2e7a3528
* added hash folder to CMAKE build
* split sdbm code from hash.c to independent program
* update readme file
* docs + vartype fix
* split djb2 code from hash.c to independent program
* fix function reference
* split xor8 code from hash.c to independent program
* split adler32 code from hash.c to independent program
* remove additional author
* split crc32 code from hash.c to independent program
* remove redundant files
* interpret large numbers as specific types
* disable eror clang-diagnostic-implicitly-unsigned-literal
* force use constants
* updating DIRECTORY.md
* clang-tidy fixes for 606e5d4fce
* added return in function doc to enable doc
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
/**
|
|
* @addtogroup hash Hash algorithms
|
|
* @{
|
|
* @file hash_adler32.c
|
|
* @author [Christian Bender](https://github.com/christianbender)
|
|
* @brief 32-bit [Adler hash](https://en.wikipedia.org/wiki/Adler-32) algorithm
|
|
*/
|
|
#include <assert.h>
|
|
#include <inttypes.h>
|
|
#include <stdio.h>
|
|
|
|
/**
|
|
* @brief 32-bit Adler algorithm implementation
|
|
*
|
|
* @param s NULL terminated ASCII string to hash
|
|
* @return 32-bit hash result
|
|
*/
|
|
uint32_t adler32(const char* s)
|
|
{
|
|
uint32_t a = 1;
|
|
uint32_t b = 0;
|
|
const uint32_t MODADLER = 65521;
|
|
|
|
size_t i = 0;
|
|
while (s[i] != '\0')
|
|
{
|
|
a = (a + s[i]) % MODADLER;
|
|
b = (b + a) % MODADLER;
|
|
i++;
|
|
}
|
|
return (b << 16) | a;
|
|
}
|
|
|
|
/**
|
|
* @brief Test function for ::adler32
|
|
* \returns None
|
|
*/
|
|
void test_adler32()
|
|
{
|
|
assert(adler32("Hello World") == 403375133);
|
|
assert(adler32("Hello World!") == 474547262);
|
|
assert(adler32("Hello world") == 413860925);
|
|
assert(adler32("Hello world!") == 487130206);
|
|
printf("Tests passed\n");
|
|
}
|
|
|
|
/** @} */
|
|
|
|
/** Main function */
|
|
int main()
|
|
{
|
|
test_adler32();
|
|
return 0;
|
|
}
|