-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add get_key_pair_info feature for spdm_emu
Signed-off-by: Wenxing Hou <[email protected]>
- Loading branch information
1 parent
0b37fda
commit 1001e1b
Showing
8 changed files
with
111 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
spdm_emu/spdm_requester_emu/spdm_requester_key_pair_info.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/** | ||
* Copyright Notice: | ||
* Copyright 2024 DMTF. All rights reserved. | ||
* License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/spdm-emu/blob/main/LICENSE.md | ||
**/ | ||
|
||
#include "spdm_requester_emu.h" | ||
|
||
#if LIBSPDM_ENABLE_CAPABILITY_GET_KEY_PAIR_INFO_CAP | ||
|
||
extern void *m_spdm_context; | ||
|
||
/** | ||
* This function executes SPDM get_key_pair_info. | ||
* | ||
* @param[in] spdm_context The SPDM context for the device. | ||
**/ | ||
libspdm_return_t do_get_key_pair_info_via_spdm(const uint32_t *session_id) | ||
{ | ||
libspdm_return_t status; | ||
void *spdm_context; | ||
|
||
uint8_t key_pair_id; | ||
uint8_t total_key_pairs; | ||
uint16_t capabilities; | ||
uint16_t key_usage_capabilities; | ||
uint16_t current_key_usage; | ||
uint32_t asym_algo_capabilities; | ||
uint32_t current_asym_algo; | ||
uint16_t public_key_info_len; | ||
uint8_t assoc_cert_slot_mask; | ||
uint8_t public_key_info[SPDM_MAX_PUBLIC_KEY_INFO_LEN]; | ||
|
||
spdm_context = m_spdm_context; | ||
|
||
key_pair_id = 1; | ||
public_key_info_len = SPDM_MAX_PUBLIC_KEY_INFO_LEN; | ||
|
||
status = libspdm_get_key_pair_info(spdm_context, session_id, | ||
key_pair_id, &total_key_pairs, | ||
&capabilities, | ||
&key_usage_capabilities, | ||
¤t_key_usage, | ||
&asym_algo_capabilities, | ||
¤t_asym_algo, | ||
&public_key_info_len, | ||
&assoc_cert_slot_mask, | ||
public_key_info); | ||
if (LIBSPDM_STATUS_IS_ERROR(status)) { | ||
return status; | ||
} | ||
|
||
return LIBSPDM_STATUS_SUCCESS; | ||
} | ||
|
||
#endif /*LIBSPDM_ENABLE_CAPABILITY_GET_KEY_PAIR_INFO_CAP*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters