/** * Copyright Notice: * Copyright 2021-2024 DMTF. All rights reserved. * License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/libspdm/blob/main/LICENSE.md **/ #ifndef RESPONDER_ASYMSIGNLIB_H #define RESPONDER_ASYMSIGNLIB_H #include "hal/base.h" #include "internal/libspdm_lib_config.h" #include "library/spdm_return_status.h" #include "industry_standard/spdm.h" #if LIBSPDM_ENABLE_CAPABILITY_CHAL_CAP /** * This functions returns the opaque data in a CHALLENGE_AUTH response. * * @param spdm_context A pointer to the SPDM context. * @param spdm_version Indicates the negotiated s version. * * @param slot_id The number of slot for the certificate chain. * * @param measurement_summary_hash The measurement summary hash. * @param measurement_summary_hash_size The size of measurement summary hash. * * @param opaque_data * A pointer to a destination buffer whose size, in bytes, is opaque_data_size. The opaque data is * copied to this buffer. * * @param opaque_data_size * On input, indicates the size, in bytes, of the destination buffer. * On output, indicates the size of the opaque data. **/ extern bool libspdm_challenge_opaque_data( #if LIBSPDM_HAL_PASS_SPDM_CONTEXT void *spdm_context, #endif spdm_version_number_t spdm_version, uint8_t slot_id, uint8_t *measurement_summary_hash, size_t measurement_summary_hash_size, void *opaque_data, size_t *opaque_data_size); #endif/*LIBSPDM_ENABLE_CAPABILITY_CHAL_CAP*/ /** * Sign an SPDM message data. * * @param spdm_context A pointer to the SPDM context. * @param spdm_version Indicates the negotiated s version. * @param base_asym_algo Indicates the signing algorithm. * @param base_hash_algo Indicates the hash algorithm. * @param is_data_hash Indicate the message type. * If true, raw message before hash. * If false, message hash. * @param message A pointer to a message to be signed. * @param message_size The size, in bytes, of the message to be signed. * @param signature A pointer to a destination buffer to store the signature. * @param sig_size On input, indicates the size, in bytes, of the destination buffer to * store the signature. * On output, indicates the size, in bytes, of the signature in the buffer. * * @retval true Signing success. * @retval false Signing fail. **/ extern bool libspdm_responder_data_sign( #if LIBSPDM_HAL_PASS_SPDM_CONTEXT void *spdm_context, #endif spdm_version_number_t spdm_version, uint8_t op_code, uint32_t base_asym_algo, uint32_t base_hash_algo, bool is_data_hash, const uint8_t *message, size_t message_size, uint8_t *signature, size_t *sig_size); #endif /* RESPONDER_ASYMSIGNLIB_H */