summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2011-03-15 20:11:08 +0100
committerDoug Zongker <dougz@android.com>2011-03-15 20:11:08 +0100
commit4762633cf846d17516878303502b056b52353a5d (patch)
tree4f5ad826c7bc5d71f8c385d3a31fc009f71549c4
parentHave recovery reboot using the new android_reboot() function. (diff)
downloadandroid_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.tar
android_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.tar.gz
android_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.tar.bz2
android_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.tar.lz
android_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.tar.xz
android_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.tar.zst
android_bootable_recovery-4762633cf846d17516878303502b056b52353a5d.zip
-rw-r--r--verifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/verifier.c b/verifier.c
index 9d39fd139..729e085cf 100644
--- a/verifier.c
+++ b/verifier.c
@@ -173,7 +173,7 @@ int verify_file(const char* path, const RSAPublicKey *pKeys, unsigned int numKey
// the signing tool appends after the signature itself.
if (RSA_verify(pKeys+i, eocd + eocd_size - 6 - RSANUMBYTES,
RSANUMBYTES, sha1)) {
- LOGI("whole-file signature verified\n");
+ LOGI("whole-file signature verified against key %d\n", i);
free(eocd);
return VERIFY_SUCCESS;
}