security-scripts/vpn/ike-scan-1.9/sha1.h
2013-06-04 17:07:08 +02:00

22 lines
542 B
C

/* $Id: sha1.h 2448 2004-12-20 10:49:39Z rsh $
*
* C Header file for Steve Reid's SHA1 implementation.
*
* Added for ike-scan by Roy Hills.
*/
#ifndef SHA1_H
#define SHA1_H
typedef struct {
uint32_t state[5];
uint32_t count[2];
unsigned char buffer[64];
} SHA1_CTX;
void SHA1Transform(uint32_t state[5], unsigned char buffer[64]);
void SHA1Init(SHA1_CTX* context);
void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int len);
void SHA1Final(unsigned char digest[20], SHA1_CTX* context);
#endif /* SHA1_H */