Files
CSE4303H3/helper.h
Zheyuan Wu 5b8e846c39 init
2026-02-22 17:52:40 -06:00

9 lines
256 B
C

#ifndef HELPER_H
#define HELPER_H
void load_env(char const* path);
int hex_to_bytes_upper(const char* hex, unsigned char* out, size_t out_size);
char* byte_to_hex(unsigned char* bytes, size_t len);
void cal_hmac(unsigned char* mac, char* message);
#endif