]> git.ozlabs.org Git - ppp.git/blobdiff - linux/mppe/sha1.h
Remove old Linux kernel MPPE stuff
[ppp.git] / linux / mppe / sha1.h
diff --git a/linux/mppe/sha1.h b/linux/mppe/sha1.h
deleted file mode 100644 (file)
index 451868c..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* sha1.h */
-
-#ifndef _SHA1_H
-#define _SHA1_H
-
-typedef struct {
-    unsigned int state[5];
-    unsigned int count[2];
-    unsigned char buffer[64];
-} SHA1_CTX;
-
-#define SHA1_SIGNATURE_SIZE 20
-
-extern void SHA1_Init(SHA1_CTX *);
-extern void SHA1_Update(SHA1_CTX *, const unsigned char *, unsigned int);
-extern void SHA1_Final(unsigned char[SHA1_SIGNATURE_SIZE], SHA1_CTX *);
-
-#endif /* _SHA1_H */