qipp
2025-11-07 1db34b4e65f72d8ae8b1f0efbc7a4395f9bbcae8
1
2
3
4
5
6
7
8
9
10
11
#ifndef _CRC_CPP_H__
#define _CRC_CPP_H__
 
#include "typedefs.h"
 
class CRC {
public:
    static u32 crc32(const u8* buf, u32 size);
    static u32 ssh_crc32_block(u32 last_crc , const unsigned char *buf, u32 size);
};
#endif // !_CRC_CPP_H__