summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Mower <mowerm@gmail.com>2014-04-09 04:33:08 +0200
committerGerrit Code Review <gerrit2@gerrit>2014-04-15 18:09:30 +0200
commit0251abc48544b35da06bc2ea17aacf8326fa4e25 (patch)
tree668bd65b9e69e04c6315bb44a8250952419888ac
parentSimplify twrpTar skip dir checks, DU code cleanup (diff)
downloadandroid_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.tar
android_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.tar.gz
android_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.tar.bz2
android_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.tar.lz
android_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.tar.xz
android_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.tar.zst
android_bootable_recovery-0251abc48544b35da06bc2ea17aacf8326fa4e25.zip
-rw-r--r--twrpDigest.cpp32
-rw-r--r--twrpDigest.hpp1
2 files changed, 23 insertions, 10 deletions
diff --git a/twrpDigest.cpp b/twrpDigest.cpp
index e888d8561..6726df3e5 100644
--- a/twrpDigest.cpp
+++ b/twrpDigest.cpp
@@ -33,17 +33,12 @@ extern "C"
#include <errno.h>
#include <fcntl.h>
#include <fstream>
-#include <iostream>
-#include <string>
-#include <sstream>
-#include <dirent.h>
#include <sys/mman.h>
#include "twcommon.h"
#include "data.hpp"
#include "variables.h"
#include "twrp-functions.hpp"
#include "twrpDigest.hpp"
-#include "twcommon.h"
using namespace std;
@@ -65,7 +60,7 @@ int twrpDigest::computeMD5(void) {
MD5Update(&md5c, buf, len);
}
fclose(file);
- MD5Final(md5sum ,&md5c);
+ MD5Final(md5sum, &md5c);
return 0;
}
@@ -76,7 +71,7 @@ int twrpDigest::write_md5digest(void) {
md5file = md5fn + ".md5";
for (i = 0; i < 16; ++i) {
- snprintf(hex, 3 ,"%02x", md5sum[i]);
+ snprintf(hex, 3, "%02x", md5sum[i]);
md5string += hex;
}
md5string += " ";
@@ -88,9 +83,28 @@ int twrpDigest::write_md5digest(void) {
}
int twrpDigest::read_md5digest(void) {
- string md5file = md5fn + ".md5";
- if (TWFunc::read_file(md5file, line) != 0)
+ int i = 0;
+ bool foundMd5File = false;
+ string md5file = "";
+ vector<string> md5ext;
+ md5ext.push_back(".md5");
+ md5ext.push_back(".md5sum");
+
+ while (i < md5ext.size()) {
+ md5file = md5fn + md5ext[i];
+ if (TWFunc::Path_Exists(md5file)) {
+ foundMd5File = true;
+ break;
+ }
+ i++;
+ }
+
+ if (!foundMd5File) {
return -1;
+ } else if (TWFunc::read_file(md5file, line) != 0) {
+ LOGERR("Could not read %s\n", md5file.c_str());
+ }
+
return 0;
}
diff --git a/twrpDigest.hpp b/twrpDigest.hpp
index 2c99eb957..5edd4d3d9 100644
--- a/twrpDigest.hpp
+++ b/twrpDigest.hpp
@@ -26,7 +26,6 @@ class twrpDigest
{
public:
void setfn(string fn);
- void setdir(string dir);
int computeMD5(void);
int verify_md5digest(void);
int write_md5digest(void);