src/local_gpu_verifier/src/verifier/nvml/__init__.py [243:267]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def get_attestation_cert_chain(self):
        """ Fetches the GPU attestation certificate chain from the
        GpuCertificateChains class object.

        Returns:
            [list]: the list of x509 certificates of the certificate chain.
        """
        return self.CertificateChains.GpuAttestationCertificateChain

    def get_attestation_report(self):
        """ Fetches the attestation report data of the NvmlHandler class object.

        Returns:
            [bytes]: the attestation report data.
        """
        return self.AttestationReport

    def get_gpu_architecture(self):
        """ Fetches the name of the current GPU.
        architecture.

        Returns:
            [str]: the GPU architecture.
        """
        return get_gpu_architecture_value(self.GPUArchitecture)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/local_gpu_verifier/src/verifier/nvml/nvmlHandlerTest.py [119:126]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def get_attestation_cert_chain(self):
        return self.CertificateChains.GpuAttestationCertificateChain

    def get_attestation_report(self):
        return self.AttestationReport
    
    def get_gpu_architecture(self):
        return get_gpu_architecture_value(self.GPUArchitecture)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



