Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / cyassl / include / openssl / md5.h
blob467db4cc8da536838b491c3be7d4bcf1e7eaa676
1 /* md5.h for openssl */
4 #ifndef CYASSL_MD5_H_
5 #define CYASSL_MD5_H_
7 #ifdef YASSL_PREFIX
8 #include "prefix_md5.h"
9 #endif
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
16 typedef struct MD5_CTX {
17 int holder[24]; /* big enough to hold ctaocrypt md5, but check on init */
18 } MD5_CTX;
20 void MD5_Init(MD5_CTX*);
21 void MD5_Update(MD5_CTX*, const void*, unsigned long);
22 void MD5_Final(unsigned char*, MD5_CTX*);
26 #ifdef __cplusplus
27 } /* extern "C" */
28 #endif
31 #endif /* CYASSL_MD5_H_ */