-
Notifications
You must be signed in to change notification settings - Fork 110
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
Add key_pair_id for libspdm_gen_csr_ex #2551
Conversation
14dcc56
to
2392cba
Compare
@@ -92,6 +92,8 @@ extern bool libspdm_gen_csr(uint32_t base_hash_algo, uint32_t base_asym_algo, bo | |||
* | |||
* @param[in, out] req_csr_tracking_tag For input, this field shall contain the CSRTrackingTag of the associated GET_CSR request. | |||
* For output, this field indicate responder available csr_tracking_tag. | |||
* @param[in] key_pair_id The value of this field shall be the unique key pair number identifying the desired |
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.
key_pair_id
-> req_key_pair_id
Indicates the desired key pair associated with the CSR.
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.
Thanks. That's right. I have changed the code.
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.
Also change the text from
The value of this field shall be the unique key pair number identifying the desired asymmetric key pair to associate with SlotID.
to
Indicates the desired key pair associated with the CSR.
There is no SlotID associated with a CSR.
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.
Thanks. I have updated the comment.
2392cba
to
857cb52
Compare
Fix the issue: DMTF#2550 Signed-off-by: Wenxing Hou <[email protected]>
857cb52
to
2356384
Compare
Fix: #2550