ucspi-ssl  0.99e
TLS encryption for IPv6 communication
hexconversion.h
Go to the documentation of this file.
1 /*
2  * File: hexconversion.h
3 */
4 
5 #ifndef HEXCONVERSION_H
6 #define HEXCONVERSION_H
7 
8 extern void bytetohex(unsigned char, char *);
9 extern char tohex(char);
10 extern int fromhex(unsigned char);
11 
12 #endif /* HEXCONVERSION_H */
13 
int fromhex(unsigned char)
Definition: hexconversion.c:32
void bytetohex(unsigned char, char *)
char tohex(char)
Definition: hexconversion.c:23