summaryrefslogtreecommitdiffstats
path: root/verifier.h
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-03-27 19:24:07 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-03-27 19:24:07 +0100
commit66afbbd536ef3d4973056e47139b578f93f77ac1 (patch)
tree2be8560dae4dfc7cf748d295d7c57da9a8973de7 /verifier.h
parentMerge "Move out the code to parse block map in MemMap" am: f1cbd2f7f2 (diff)
parentMerge "Allow RSA 4096 key in package verification" (diff)
downloadandroid_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.tar
android_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.tar.gz
android_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.tar.bz2
android_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.tar.lz
android_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.tar.xz
android_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.tar.zst
android_bootable_recovery-66afbbd536ef3d4973056e47139b578f93f77ac1.zip
Diffstat (limited to '')
-rw-r--r--verifier.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/verifier.h b/verifier.h
index 106b86b85..ef9feaff0 100644
--- a/verifier.h
+++ b/verifier.h
@@ -88,7 +88,8 @@ class VerifierInterface {
// VERIFY_FAILURE (if any error is encountered or no key matches the signature).
int verify_file(VerifierInterface* package, const std::vector<Certificate>& keys);
-// Checks that the RSA key has a modulus of 2048 bits long, and public exponent is 3 or 65537.
+// Checks that the RSA key has a modulus of 2048 or 4096 bits long, and public exponent is 3 or
+// 65537.
bool CheckRSAKey(const std::unique_ptr<RSA, RSADeleter>& rsa);
// Checks that the field size of the curve for the EC key is 256 bits.