Skip to content

Commit

Permalink
fix cert decoding
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Vavala <[email protected]>
  • Loading branch information
bvavala committed Jan 26, 2022
1 parent 729d5d6 commit 489585a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions common/crypto/attestation-api/evidence/verify-evidence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ void url_decode_ias_certificate(std::string& s)
replace_all_substrings(s, "%0A", "\n");
replace_all_substrings(s, "%2B", "+");
replace_all_substrings(s, "%3D", "=");
replace_all_substrings(s, "%2F", "/");
}

bool split_certificates(
Expand Down

0 comments on commit 489585a

Please sign in to comment.