Skip to content

Commit d512c1b

Browse files
committed
fix
Signed-off-by: Jun Kimura <jun.kimura@datachain.jp>
1 parent 3a6ea7d commit d512c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/remote-attestation/src/ias_utils.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,14 +316,14 @@ fn parse_response_attn_report(resp: &[u8]) -> Result<IASSignedReport, Error> {
316316
})?;
317317
trace!("content length = {}", len_num);
318318
}
319-
"X-IASAttestationVerificationReport-Signature" => {
319+
"X-IASReport-Signature" => {
320320
sig = str::from_utf8(h.value)
321321
.map_err(|e| {
322322
Error::invalid_utf8_bytes(h.value.to_vec(), e, h.name.to_string())
323323
})?
324324
.to_string()
325325
}
326-
"X-IASAttestationVerificationReport-Signing-Certificate" => {
326+
"X-IASReport-Signing-Certificate" => {
327327
cert = str::from_utf8(h.value)
328328
.map_err(|e| {
329329
Error::invalid_utf8_bytes(h.value.to_vec(), e, h.name.to_string())

0 commit comments

Comments
 (0)