am 07e32c29: Merge "Remove unused sha1.h."

* commit '07e32c29807e1256df8e8c3c5686e448e8998c39':
  Remove unused sha1.h.
diff --git a/lib/Support/sha1.h b/lib/Support/sha1.h
deleted file mode 100644
index 1b373f1..0000000
--- a/lib/Support/sha1.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * See "sha1.c" for author info.
- */
-#ifndef _DALVIK_SHA1
-#define _DALVIK_SHA1
-
-#include <stdint.h>
-
-typedef struct {
-    uint32_t state[5];
-    uint32_t count[2];
-    uint8_t buffer[64];
-} SHA1_CTX;
-
-#define HASHSIZE 20
-
-#if defined(__cplusplus)
-extern "C" {
-#endif
-
-void SHA1Init(SHA1_CTX* context);
-void SHA1Update(SHA1_CTX* context, const uint8_t* data, uint32_t len);
-void SHA1Final(uint8_t digest[HASHSIZE], SHA1_CTX* context);
-
-#if defined(__cplusplus)
-}
-#endif
-
-#endif /*_DALVIK_SHA1*/