2
0
mirror of https://git.sr.ht/~sircmpwn/mkproof synced 2024-12-03 23:18:13 +01:00
mkproof/include/util.h
2020-11-25 12:05:19 -05:00

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