lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
343 B
24 lines
343 B
#ifndef _DIGCALC_H_ |
|
#define _DIGCALC_H_ |
|
|
|
#ifdef HAVE_CONFIG_H |
|
# include "config.h" |
|
#endif |
|
|
|
#define HASHLEN 16 |
|
typedef unsigned char HASH[HASHLEN]; |
|
#define HASHHEXLEN 32 |
|
typedef char HASHHEX[HASHHEXLEN+1]; |
|
#ifdef USE_OPENSSL |
|
#define IN const |
|
#else |
|
#define IN |
|
#endif |
|
#define OUT |
|
|
|
void CvtHex( |
|
IN HASH Bin, |
|
OUT HASHHEX Hex |
|
); |
|
|
|
#endif
|
|
|