Skip to content

Commit

Permalink
updated simw package repo
Browse files Browse the repository at this point in the history
  • Loading branch information
sujaygkulkarni-nxp committed Oct 19, 2022
1 parent 9d6f6be commit b5a8f01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ CHIP_ERROR ExampleSe05xDACProviderv2::SignWithDeviceAttestationKey(const ByteSpa
ByteSpan tagvalue;
uint8_t tempBuf[2] = {0,};

tempBuf[0] = 0x15;
tempBuf[0] = (uint8_t)TLV::TLVElementType::Structure;
VerifyOrReturnError(CHIP_NO_ERROR ==
se05xSetCertificate(START_CONTAINER_SE05X_ID, tempBuf, 1),
CHIP_ERROR_INTERNAL);
Expand Down Expand Up @@ -221,7 +221,7 @@ CHIP_ERROR ExampleSe05xDACProviderv2::SignWithDeviceAttestationKey(const ByteSpa
}
}

tempBuf[0] = 0x18;
tempBuf[0] = (uint8_t)TLV::TLVElementType::EndOfContainer;
VerifyOrReturnError(CHIP_NO_ERROR ==
se05xSetCertificate(END_CONTAINER_SE05X_ID, tempBuf, 1),
CHIP_ERROR_INTERNAL);
Expand Down

0 comments on commit b5a8f01

Please sign in to comment.