summaryrefslogtreecommitdiffstats
path: root/verifier.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-03-27 19:32:26 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-03-27 19:32:26 +0100
commite7dd308591a6634a85211e2b9593fab1c90a0a37 (patch)
tree8b4fe6f8ea03c063d5e341caed35adb1b46dfd67 /verifier.cpp
parentMerge "Move out the code to parse block map in MemMap" am: f1cbd2f7f2 am: 67a3ffc22f (diff)
parentMerge "Allow RSA 4096 key in package verification" am: 3168ddf79d (diff)
downloadandroid_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.tar
android_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.tar.gz
android_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.tar.bz2
android_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.tar.lz
android_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.tar.xz
android_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.tar.zst
android_bootable_recovery-e7dd308591a6634a85211e2b9593fab1c90a0a37.zip
Diffstat (limited to '')
-rw-r--r--verifier.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/verifier.cpp b/verifier.cpp
index 68a011e0d..08d852b37 100644
--- a/verifier.cpp
+++ b/verifier.cpp
@@ -373,8 +373,8 @@ bool CheckRSAKey(const std::unique_ptr<RSA, RSADeleter>& rsa) {
const BIGNUM* out_e;
RSA_get0_key(rsa.get(), &out_n, &out_e, nullptr /* private exponent */);
auto modulus_bits = BN_num_bits(out_n);
- if (modulus_bits != 2048) {
- LOG(ERROR) << "Modulus should be 2048 bits long, actual: " << modulus_bits;
+ if (modulus_bits != 2048 && modulus_bits != 4096) {
+ LOG(ERROR) << "Modulus should be 2048 or 4096 bits long, actual: " << modulus_bits;
return false;
}