-
Notifications
You must be signed in to change notification settings - Fork 134
Remove LIBSPDM_MAX_CERT_CHAIN_BLOCK_LEN #3412
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
See the definition in SPDM specification:
Any mismatch violates the spec. |
c6ed609 to
2f230a2
Compare
fix DMTF#1655 Signed-off-by: Aaron Li <[email protected]>
| uint32_t req_msg_header_size; | ||
| uint32_t rsp_msg_header_size; | ||
| size_t cert_chain_size; | ||
| uint32_t max_cert_chain_block_size; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can move this declaration to line 127.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we have to move?
I think nothing wrong to define it here.
| uint32_t req_msg_header_size; | ||
| uint32_t rsp_msg_header_size; | ||
| size_t cert_chain_size; | ||
| uint32_t max_cert_chain_block_size; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can move this declaration to line 166.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we have to move?
I think nothing wrong to define it here.
Signed-off-by: Aaron Li <[email protected]>
fix #1655