added vpn scripts
This commit is contained in:
parent
6560762504
commit
ec0003bfa8
72 changed files with 424909 additions and 0 deletions
22
vpn/ike-scan-1.9/sha1.h
Normal file
22
vpn/ike-scan-1.9/sha1.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
/* $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 */
|
Loading…
Add table
Add a link
Reference in a new issue