cvm-attestation/src/AttestationProvider.py [247:257]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    except Exception as e:
      raise AttestationProviderException(f'Exception while decoding jwt. Exception: {e}')

  def create_payload(self, evidence: str, runtimes_data: str):
    # Check if evidence and runtimes_data are strings
    if not isinstance(evidence, str):
      raise ValueError("The 'evidence' argument must be an encoded string.")
    if not isinstance(runtimes_data, str):
      raise ValueError("The 'runtimes_data' argument must be an encoded string.")

    payload = ''
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cvm-attestation/src/AttestationProvider.py [314:325]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    except Exception as e:
      raise AttestationProviderException(f'Exception while decoding jwt. Exception: {e}')


  def create_payload(self, evidence: str, runtimes_data: str):
    # Check if evidence and runtimes_data are strings
    if not isinstance(evidence, str):
      raise ValueError("The 'evidence' argument must be an encoded string.")
    if not isinstance(runtimes_data, str):
      raise ValueError("The 'runtimes_data' argument must be an encoded string.")

    payload = ''
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



