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