summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}