summaryrefslogtreecommitdiffstats
path: root/verifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'verifier.h')
-rw-r--r--verifier.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/verifier.h b/verifier.h
index e9ef3b722..b355b3eb7 100644
--- a/verifier.h
+++ b/verifier.h
@@ -19,10 +19,16 @@
#include "mincrypt/rsa.h"
+#define ASSUMED_UPDATE_BINARY_NAME "META-INF/com/google/android/update-binary"
+
+enum { INSTALL_SUCCESS, INSTALL_ERROR, INSTALL_CORRUPT };
+
+static const float VERIFICATION_PROGRESS_FRACTION = 0.25;
+
/* Look in the file for a signature footer, and verify that it
* matches one of the given keys. Return one of the constants below.
*/
-int verify_file(const char* path, const RSAPublicKey *pKeys, unsigned int numKeys);
+int verify_file(const char* path);
RSAPublicKey* load_keys(const char* filename, int* numKeys);