summaryrefslogtreecommitdiffstats
path: root/verifier.h
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2009-11-15 21:05:33 +0100
committerJean-Baptiste Queru <jbq@google.com>2009-11-15 21:05:33 +0100
commitb2ce982d432338d36a41bd57e35a14459fc3d30b (patch)
tree7fd574307953a0bbde499194ab4006a7cae3f8b9 /verifier.h
parentmerge from donut (diff)
parenteclair snapshot (diff)
downloadandroid_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.tar
android_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.tar.gz
android_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.tar.bz2
android_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.tar.lz
android_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.tar.xz
android_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.tar.zst
android_bootable_recovery-b2ce982d432338d36a41bd57e35a14459fc3d30b.zip
Diffstat (limited to 'verifier.h')
-rw-r--r--verifier.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/verifier.h b/verifier.h
index d784dce4c..1bdfca6dd 100644
--- a/verifier.h
+++ b/verifier.h
@@ -17,14 +17,14 @@
#ifndef _RECOVERY_VERIFIER_H
#define _RECOVERY_VERIFIER_H
-#include "minzip/Zip.h"
#include "mincrypt/rsa.h"
-/*
- * Check the digital signature (as applied by jarsigner) on a Zip archive.
- * Every file in the archive must be signed by one of the supplied RSA keys.
+/* Look in the file for a signature footer, and verify that it
+ * matches one of the given keys. Return one of the constants below.
*/
-bool verify_jar_signature(const ZipArchive *pArchive,
- const RSAPublicKey *pKeys, int numKeys);
+int verify_file(const char* path, const RSAPublicKey *pKeys, unsigned int numKeys);
+
+#define VERIFY_SUCCESS 0
+#define VERIFY_FAILURE 1
#endif /* _RECOVERY_VERIFIER_H */