summaryrefslogtreecommitdiffstats
path: root/toolbox
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-12-12 03:19:50 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-12-12 03:19:50 +0000
commitf404c649a7d26231b478f8f65c770a6378f6549c (patch)
treece360fbbafa481d29223fdc824111ab8d70e4704 /toolbox
parent977b84140f2314c244f32b2df0913abb0876532b (diff)
parentffe4d9cdc7e354cfa487223dd2bd5adb38869163 (diff)
downloadsystem_core-f404c649a7d26231b478f8f65c770a6378f6549c.zip
system_core-f404c649a7d26231b478f8f65c770a6378f6549c.tar.gz
system_core-f404c649a7d26231b478f8f65c770a6378f6549c.tar.bz2
am ffe4d9cd: Merge "toybox has md5sum, so lose toolbox\'s md5."
* commit 'ffe4d9cdc7e354cfa487223dd2bd5adb38869163': toybox has md5sum, so lose toolbox's md5.
Diffstat (limited to 'toolbox')
-rw-r--r--toolbox/Android.mk4
-rw-r--r--toolbox/md5.c71
2 files changed, 0 insertions, 75 deletions
diff --git a/toolbox/Android.mk b/toolbox/Android.mk
index 1dcd9c2..3bd7523 100644
--- a/toolbox/Android.mk
+++ b/toolbox/Android.mk
@@ -128,7 +128,6 @@ OUR_TOOLS := \
log \
ls \
lsof \
- md5 \
mkdir \
mount \
nandread \
@@ -171,10 +170,7 @@ LOCAL_SRC_FILES := \
LOCAL_CFLAGS += $(common_cflags)
-LOCAL_C_INCLUDES += external/openssl/include
-
LOCAL_SHARED_LIBRARIES := \
- libcrypto \
libcutils \
libselinux \
diff --git a/toolbox/md5.c b/toolbox/md5.c
deleted file mode 100644
index 5de4d9e..0000000
--- a/toolbox/md5.c
+++ /dev/null
@@ -1,71 +0,0 @@
-#include <errno.h>
-#include <fcntl.h>
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <openssl/md5.h>
-
-static int usage()
-{
- fprintf(stderr,"md5 file ...\n");
- return -1;
-}
-
-static int do_md5(const char *path)
-{
- unsigned int i;
- int fd;
- MD5_CTX md5_ctx;
- unsigned char md5[MD5_DIGEST_LENGTH];
-
- fd = open(path, O_RDONLY);
- if (fd < 0) {
- fprintf(stderr,"could not open %s, %s\n", path, strerror(errno));
- return -1;
- }
-
- MD5_Init(&md5_ctx);
-
- while (1) {
- char buf[4096];
- ssize_t rlen;
- rlen = read(fd, buf, sizeof(buf));
- if (rlen == 0)
- break;
- else if (rlen < 0) {
- (void)close(fd);
- fprintf(stderr,"could not read %s, %s\n", path, strerror(errno));
- return -1;
- }
- MD5_Update(&md5_ctx, buf, rlen);
- }
- if (close(fd)) {
- fprintf(stderr,"could not close %s, %s\n", path, strerror(errno));
- return -1;
- }
-
- MD5_Final(md5, &md5_ctx);
-
- for (i = 0; i < (int)sizeof(md5); i++)
- printf("%02x", md5[i]);
- printf(" %s\n", path);
-
- return 0;
-}
-
-int md5_main(int argc, char *argv[])
-{
- int i, ret = 0;
-
- if (argc < 2)
- return usage();
-
- /* loop over the file args */
- for (i = 1; i < argc; i++) {
- if (do_md5(argv[i]))
- ret = 1;
- }
-
- return ret;
-}