summaryrefslogtreecommitdiffstats
path: root/verifier.cpp
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2019-03-27 18:57:38 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-03-27 18:57:38 +0100
commit3168ddf79dee2b7256eb43b404dad5c3a0d71af2 (patch)
tree2be8560dae4dfc7cf748d295d7c57da9a8973de7 /verifier.cpp
parentMerge "Move out the code to parse block map in MemMap" (diff)
parentAllow RSA 4096 key in package verification (diff)
downloadandroid_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.tar
android_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.tar.gz
android_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.tar.bz2
android_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.tar.lz
android_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.tar.xz
android_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.tar.zst
android_bootable_recovery-3168ddf79dee2b7256eb43b404dad5c3a0d71af2.zip
Diffstat (limited to 'verifier.cpp')
-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;
}