chiark / gitweb /
New encrypting tunnel seems to work !
[userv-utils.git] / ipif / hex.h
1 /**/
2
3 #ifndef HEX__H_INCLUDED
4 #define HEX__H_INCLUDED
5
6 #include <stdint.h>
7
8 const char *tohex(uint8_t *data, int len, char *buf);
9 void unhex(const char *what, const char *txt, uint8_t *datar, int *lenr,
10            int minlen, int maxlen);
11
12 #endif