]> git.ozlabs.org Git - ppp.git/blobdiff - linux/mppe/sha1.h
Don't use unsigned long in the SHA1 code; we want 32-bit variables
[ppp.git] / linux / mppe / sha1.h
index b23356bb21c8e4fe6f82a24e06ae78ba2c806896..451868cd6261b7da41df1f74fc64550e9c56f65b 100644 (file)
@@ -4,8 +4,8 @@
 #define _SHA1_H
 
 typedef struct {
-    unsigned long state[5];
-    unsigned long count[2];
+    unsigned int state[5];
+    unsigned int count[2];
     unsigned char buffer[64];
 } SHA1_CTX;