]> git.ozlabs.org Git - ppp.git/blobdiff - pppd/sha1.h
CI: Updated the 'checkout' actions that were using Node.js 16 to Node.js 20. (#489)
[ppp.git] / pppd / sha1.h
diff --git a/pppd/sha1.h b/pppd/sha1.h
deleted file mode 100644 (file)
index dff8da8..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-/* sha1.h */
-
-#ifndef __SHA1_INCLUDE_
-
-typedef struct {
-    unsigned long state[5];
-    unsigned long 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 *);
-
-#define __SHA1_INCLUDE_
-#endif /* __SHA1_INCLUDE_ */