src/local_gpu_verifier/src/verifier/attestation/spdm_msrt_req_msg.py [52:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    }

    def get_spdm_version(self):
        """ Fetches the spdm version field of the object of SpdmMeasurementRequestMessage.

        Returns:
            [bytes]: the spdm version.
        """
        return self.SPDMVersion
    
    def set_spdm_version(self, value):
        """ Sets the spdm version field of the object representing the SPDM GET_MEASUREMENT request.

        Args:
            value (bytes): the spdm version.
        """
        self.SPDMVersion = value

    def get_request_response_code(self):
        """ Fetches the RequestResponseCode field of the object representing the SPDM GET_MEASUREMENT request.

        Returns:
            [bytes]: the RequestResponseCode
        """
        return self.RequestResponseCode
    
    def set_request_response_code(self, value):
        """ Sets the RequestResponseCode field of the object representing the SPDM GET_MEASUREMENT request.

        Args:
            value (bytes): the RequestResponse value.
        """
        self.RequestResponseCode = value

    def get_param1(self):
        """ Fetches the Param1 field of the object representing the SPDM GET_MEASUREMENT request.

        Returns:
            [bytes]: the Param1 value.
        """
        return self.Param1
    
    def set_param1(self, value):
        """ Sets the Param1 field of the object representing the SPDM GET_MEASUREMENT request.

        Args:
            value (bytes): the Param1 value.
        """
        self.Param1 = value

    def get_param2(self):
        """ Fetches the Param2 field of the object representing the SPDM GET_MEASUREMENT request.

        Returns:
            [bytes]: the Param2 value
        """
        return self.Param2

    def set_param2(self, value):
        """ Sets the Param2 field of the object representing the SPDM GET_MEASUREMENT request.

        Args:
            value (bytes): the Param2 value.
        """
        self.Param2 = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/local_gpu_verifier/src/verifier/attestation/spdm_msrt_resp_msg.py [437:501]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    }

    def get_spdm_version(self):
        """ Fetches the SPDMVersion of the object representing the SPDM GET_MEASUREMENT response message.

        Returns:
            [bytes]: the SPDM version
        """
        return self.SPDMVersion

    def set_spdm_version(self, value):
        """ Sets the SPDMVersion field of the object representing the SPDM GET_MEASUREMENT response message.

        Args:
            value (bytes): the SPDM version
        """
        self.SPDMVersion = value

    def get_request_response_code(self):
        """ Fetches the RequestResponseCode field of the object representing the SPDM GET_MEASUREMENT response.

        Returns:
            [bytes]: the RequestResponse value.
        """
        return self.RequestResponseCode

    def set_request_response_code(self, value):
        """ Sets the RequestResponseCode field of the object representing the SPDM GET_MEASUREMENT response.

        Args:
            value (bytes): the RequestResponse value.
        """
        self.RequestResponseCode = value

    def get_param1(self):
        """ Fetches the Param1 field of the object representing the SPDM GET_MEASUREMENT response.

        Returns:
            [bytes]: the Param1 value.
        """
        return self.Param1

    def set_param1(self, value):
        """ Sets the Param1 field of the object representing the SPDM GET_MEASUREMENT response.

        Args:
            value (bytes): the Param1 value.
        """
        self.Param1 = value

    def get_param2(self):
        """ Fetches the Param2 field of the object representing the SPDM GET_MEASUREMENT response.

        Returns:
            [bytes]: the Param2 value
        """
        return self.Param2

    def set_param2(self, value):
        """ Sets the Param2 field of the object representing the SPDM GET_MEASUREMENT response.

        Args:
            value (bytes): the Param2 value.
        """
        self.Param2 = value
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



