cvm-attestation/src/AttestationProvider.py [81:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        )

        if response.status_code == 200:
          self.log.info("Received token from attestation provider")
          response_json = json.loads(response.text)
          encoded_token = response_json['token']

          return encoded_token
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cvm-attestation/src/AttestationProvider.py [352:360]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      )

      # Check the response from the server
      if response.status_code == 200:
        self.log.info("Received token from attestation provider")
        response_json = json.loads(response.text)
        encoded_token = response_json['token']

        return encoded_token
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



