Skip to content

Commit

Permalink
Fix null dereference in PKCS #1.5 padding functions
Browse files Browse the repository at this point in the history
Detected by GCC analyzer
  • Loading branch information
jibeee committed Oct 19, 2022
1 parent 61aba38 commit d834da4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib_cxng/src/cx_pkcs1.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ cx_err_t cx_pkcs1_emsa_v1o5_encode(cx_md_t hID, uint8_t *em, size_t emLen, const
const uint8_t *oid;

oid = cx_pkcs1_get_hash_oid(hID, &oid_len);
if (oid == NULL) {
return CX_INVALID_PARAMETER;
}

if ((3 + oid_len + mHashLen) >= emLen) {
return CX_INVALID_PARAMETER;
Expand Down Expand Up @@ -303,6 +306,9 @@ bool cx_pkcs1_emsa_v1o5_verify(cx_md_t hID, uint8_t *em, size_t emLen, const uin
const uint8_t *oid;

oid = cx_pkcs1_get_hash_oid(hID, &oid_len);
if (oid == NULL) {
return false;
}

if ((3 + oid_len + mHashLen) >= emLen) {
return false;
Expand Down Expand Up @@ -518,6 +524,9 @@ cx_err_t cx_pkcs1_eme_oaep_encode(cx_md_t hID, uint8_t *em, size_t emLen, const

hLen = cx_pkcs1_get_hash_len(hID);
lHash = cx_pkcs1_get_hash_oeap(hID, &lHashLen);
if (hLen == 0 || lHash == NULL) {
return CX_INVALID_PARAMETER;
}

if ((hLen + 1) >= emLen) {
return CX_INVALID_PARAMETER;
Expand Down Expand Up @@ -565,6 +574,9 @@ cx_err_t cx_pkcs1_eme_oaep_decode(cx_md_t hID, uint8_t *em, size_t emLen, uint8_

hLen = cx_pkcs1_get_hash_len(hID);
lHash = cx_pkcs1_get_hash_oeap(hID, &lHashLen);
if (hLen == 0 || lHash == NULL) {
return CX_INVALID_PARAMETER;
}
if ((hLen + 1) >= emLen) {
return CX_INVALID_PARAMETER;
}
Expand Down

0 comments on commit d834da4

Please sign in to comment.