Skip to content

Commit 05d0e92

Browse files
committed
Removed forced inflation of header size in sign
1 parent 137a97f commit 05d0e92

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tools/keytools/sign.c

-12
Original file line numberDiff line numberDiff line change
@@ -481,12 +481,6 @@ static int load_key_rsa(int sign_type, uint32_t rsa_keysz, uint32_t rsa_pubkeysz
481481

482482
if (*pubkey_sz <= rsa_pubkeysz) {
483483
CMD.header_sz = header_sz;
484-
if (CMD.policy_sign) {
485-
CMD.header_sz += 512;
486-
}
487-
else if (sign_type == SIGN_RSA3072 && CMD.hash_algo != HASH_SHA256) {
488-
CMD.header_sz += 512;
489-
}
490484
if (secondary) {
491485
CMD.secondary_signature_sz = rsa_keysz;
492486
CMD.secondary_sign = sign_type;
@@ -526,12 +520,6 @@ static int load_key_rsa(int sign_type, uint32_t rsa_keysz, uint32_t rsa_pubkeysz
526520
if (ret == 0 || CMD.sign != SIGN_AUTO) {
527521
if (CMD.header_sz < header_sz)
528522
CMD.header_sz = header_sz;
529-
if (CMD.policy_sign) {
530-
CMD.header_sz += 512;
531-
}
532-
else if (sign_type == SIGN_RSA3072 && CMD.hash_algo != HASH_SHA256) {
533-
CMD.header_sz += 512;
534-
}
535523
if (secondary) {
536524
CMD.secondary_sign = sign_type;
537525
CMD.secondary_signature_sz = keySzOut;

0 commit comments

Comments
 (0)