C语言实现hash/xor8算法(附完整源码)

实现hash/xor8算法的完整源码(定义,实现,main函数测试)

#include <assert.h>
#include <inttypes.h>
#include <stdio.h>

/**
 * @brief 8-bit XOR algorithm implementation
 *
 * @param s NULL terminated ASCII string to hash
 * @return 8-bit hash result
 */
uint8_t xor8

猜你喜欢

转载自blog.csdn.net/it_xiangqiang/article/details/114027490