aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2015-09-22 23:54:14 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-09-22 23:54:14 +0000
commita2231230b94b78522b17ccaaa0843ccdbec33e57 (patch)
tree300e2c00d2ca4b54fea55c09eee8877b8304554f
parent903982795e557dcee215bb2d2cf494a1e01e2b55 (diff)
parent07e32c29807e1256df8e8c3c5686e448e8998c39 (diff)
downloadlibbcc-a2231230b94b78522b17ccaaa0843ccdbec33e57.tar.gz
am 07e32c29: Merge "Remove unused sha1.h."
* commit '07e32c29807e1256df8e8c3c5686e448e8998c39': Remove unused sha1.h.
-rw-r--r--lib/Support/sha1.h29
1 files changed, 0 insertions, 29 deletions
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*/