removed mods directory from the ATutor codebase
[atutor.git] / mods / atsocial_iphone_app / OAuth / Crypto / sha1.h
diff --git a/mods/atsocial_iphone_app/OAuth/Crypto/sha1.h b/mods/atsocial_iphone_app/OAuth/Crypto/sha1.h
deleted file mode 100644 (file)
index f3218ee..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-
-// From http://www.mirrors.wiretapped.net/security/cryptography/hashes/sha1/sha1.c
-
-typedef struct {
-    unsigned long state[5];
-    unsigned long count[2];
-    unsigned char buffer[64];
-} SHA1_CTX;
-
-extern void SHA1Init(SHA1_CTX* context);
-extern void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int len);
-extern void SHA1Final(unsigned char digest[20], SHA1_CTX* context);