diff options
Diffstat (limited to 'verifier.h')
-rw-r--r-- | verifier.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/verifier.h b/verifier.h index 1bdfca6dd..c5a2391c7 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); #define VERIFY_SUCCESS 0 #define VERIFY_FAILURE 1 |