Skip to content

Commit 231c552

Browse files
authored
Merge pull request #1544 from thomas-fossati/patch-1
fix(cca-veraison): use HTTPS URLs for the Linaro instance
2 parents 9763f93 + 3cb69db commit 231c552

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/learning-paths/servers-and-cloud-computing/cca-veraison/attestation-verification.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ layout: learningpathall
1111

1212
Linaro’s verification service is implemented using components from the open source [Veraison](https://github.com/veraison) project.
1313

14-
The URL for reaching this experimental verifier service is http://veraison.test.linaro.org:8080.
14+
The URL for reaching this experimental verifier service is https://veraison.test.linaro.org:8443.
1515

1616
To check that you can reach the Linaro attestation verifier service, run the following command:
1717

1818
```bash
19-
curl http://veraison.test.linaro.org:8080/.well-known/veraison/verification
19+
curl https://veraison.test.linaro.org:8443/.well-known/veraison/verification
2020
```
2121

2222
This is a simple call to query the well-known characteristics of the verification service. If it succeeds, it will return a JSON response that looks something like this:
@@ -67,15 +67,15 @@ The easiest way to do this is to use the `jq` utility.
6767
You can save the public key by repeating the curl command from the previous step and use `jq` to filter the response down to just the public key part. Save it into a file called `pkey.json`:
6868

6969
```bash
70-
curl -s -N http://veraison.test.linaro.org:8080/.well-known/veraison/verification | jq '."ear-verification-key"' > $HOME/pkey.json
70+
curl -s -N https://veraison.test.linaro.org:8443/.well-known/veraison/verification | jq '."ear-verification-key"' > $HOME/pkey.json
7171
```
7272
You have now saved the public key of the verification service. You are now ready to submit the CCA example attestation token to the service and get an attestation result.
7373

7474
## Submit the CCA Example Token to the Verification Service
7575
To submit the example CCA attestation token to the verification service, you will need to use the `evcli` tool once again. First, configure the correct API endpoint for the Linaro verifier service:
7676

7777
```bash
78-
export API_SERVER=http://veraison.test.linaro.org:8080/challenge-response/v1/newSession
78+
export API_SERVER=https://veraison.test.linaro.org:8443/challenge-response/v1/newSession
7979
```
8080

8181
Now submit the token using the following command. The output of this command is an attestation result, which will be saved in a file called `attestation_result.jwt`:

0 commit comments

Comments
 (0)