Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
Loading...
Searching...
No Matches
hash_xor8.c File Reference

8-bit XOR hash algorithm for ASCII characters More...

#include <assert.h>
#include <inttypes.h>
#include <stdio.h>
Include dependency graph for hash_xor8.c:

Functions

uint8_t xor8 (const char *s)
 8-bit XOR algorithm implementation
 
void test_xor8 ()
 Test function for xor8.
 
int main ()
 Main function.
 

Detailed Description

8-bit XOR hash algorithm for ASCII characters

Author
Christian Bender

Function Documentation

◆ main()

int main ( void  )

Main function.

48{
49 test_xor8();
50 return 0;
51}
void test_xor8()
Test function for xor8.
Definition hash_xor8.c:35
Here is the call graph for this function: