Atrinik Client 2.5
include/sha1.h
Go to the documentation of this file.
00001 
00028 #ifndef POLARSSL_SHA1_H
00029 #define POLARSSL_SHA1_H
00030 #include <string.h>
00031 
00035 typedef struct
00036 {
00037     unsigned long total[2];     
00038     unsigned long state[5];     
00039     unsigned char buffer[64];   
00041     unsigned char ipad[64];     
00042     unsigned char opad[64];     
00043 }
00044 sha1_context;
00045 
00046 #endif