aboutsummaryrefslogtreecommitdiffstats
path: root/install.cpp
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2013-04-10 11:32:17 -0700
committerDoug Zongker <dougz@android.com>2013-04-10 11:32:17 -0700
commitbac7fba02763ae5e78e8e4ba0bea727330ad953e (patch)
tree6056acf572fb45b4ff1ef2874b1d6373776a56c7 /install.cpp
parent84a6c0d298f0606f7c27857b17115cbd362ad637 (diff)
downloadbootable_recovery-bac7fba02763ae5e78e8e4ba0bea727330ad953e.zip
bootable_recovery-bac7fba02763ae5e78e8e4ba0bea727330ad953e.tar.gz
bootable_recovery-bac7fba02763ae5e78e8e4ba0bea727330ad953e.tar.bz2
verifier: update to support certificates using SHA-256
Change-Id: Ifd5a29d459acf101311fa1c220f728c3d0ac2e4e
Diffstat (limited to 'install.cpp')
-rw-r--r--install.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.cpp b/install.cpp
index 0f3298f..0cb5cc7 100644
--- a/install.cpp
+++ b/install.cpp
@@ -190,7 +190,7 @@ really_install_package(const char *path, int* wipe_cache)
ui->Print("Opening update package...\n");
int numKeys;
- RSAPublicKey* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys);
+ Certificate* loadedKeys = load_keys(PUBLIC_KEYS_FILE, &numKeys);
if (loadedKeys == NULL) {
LOGE("Failed to load keys\n");
return INSTALL_CORRUPT;