2021-10-09 00:58:55 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define LIMIT(x, min, max) \
|
|
|
|
({ \
|
|
|
|
typeof( x ) _x = x; \
|
|
|
|
typeof( min ) _min = min; \
|
|
|
|
typeof( max ) _max = max; \
|
|
|
|
( ( ( _x ) < ( _min ) ) ? ( _min ) : ( ( _x ) > ( _max ) ) ? ( _max) : ( _x ) ); \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define DegToRad(a) ( (a) * 0.01745329252f )
|
|
|
|
#define RadToDeg(a) ( (a) * 57.29577951f )
|
|
|
|
|
|
|
|
#define ALIGN4(x) (((x) + 3) & ~3)
|
|
|
|
#define ALIGN32(x) (((x) + 31) & ~31)
|
|
|
|
|
|
|
|
// those work only in powers of 2
|
|
|
|
#define ROUNDDOWN(val, align) ((val) & ~(align-1))
|
|
|
|
#define ROUNDUP(val, align) ROUNDDOWN(((val) + (align-1)), align)
|
|
|
|
|
|
|
|
|
|
|
|
#define le16(i) ((((uint16_t) ((i) & 0xFF)) << 8) | ((uint16_t) (((i) & 0xFF00) >> 8)))
|
|
|
|
#define le32(i) ((((uint32_t)le16((i) & 0xFFFF)) << 16) | ((uint32_t)le16(((i) & 0xFFFF0000) >> 16)))
|
|
|
|
#define le64(i) ((((uint64_t)le32((i) & 0xFFFFFFFFLL)) << 32) | ((uint64_t)le32(((i) & 0xFFFFFFFF00000000LL) >> 32)))
|
|
|
|
|
2021-10-15 15:41:16 +02:00
|
|
|
unsigned int swap_uint32(unsigned int val);
|
|
|
|
|
|
|
|
unsigned long long swap_uint64(unsigned long long val);
|
|
|
|
|
|
|
|
void calculateHash256(unsigned char *data, unsigned int length, unsigned char *hashOut);
|
|
|
|
|
2021-10-09 00:58:55 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
class Utils {
|
|
|
|
public:
|
|
|
|
static void dumpHex(const void *data, size_t size);
|
|
|
|
|
|
|
|
static std::string calculateSHA1(const char *buffer, size_t size);
|
|
|
|
|
|
|
|
static std::string hashFile(const std::string &path);
|
|
|
|
};
|