mirror of
https://git.sr.ht/~sircmpwn/mkproof
synced 2024-12-03 23:18:13 +01:00
9 lines
202 B
C
9 lines
202 B
C
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
#include <stddef.h>
|
|
|
|
void enchex(unsigned char *in, size_t inlen, char *out, size_t outlen);
|
|
int dechex(char *in, size_t inlen, unsigned char *out, size_t outlen);
|
|
|
|
#endif
|