Skip to content

Commit 1e60315

Browse files
committed
Review comments from AH
1 parent 53bffbb commit 1e60315

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

docs/trust-list.mdx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,21 @@ c2patool ./image.jpg trust --allowed_list ./cert.pem
3838

3939
Confirm that the result does not contain a `validation_status` field, which indicates an error.
4040

41-
1. **Confirm that the `signature_info.issuer` field in the manifest is correct**. This field determines what [Verify displays for the organization name](verify.mdx#title-and-signing-information) after "Issued by ...". In this example, replace "XYZ Inc." with the name of your organization:
41+
1. **Confirm that the `signature_info.issuer` field in the manifest is correct**. This field determines what [Verify displays for the organization name](verify.mdx#title-and-signing-information) after "Issued by ...". Use a C2PA Tool command like this:
4242

4343
```
4444
c2patool ./image.jpg trust --allowed_list ./cert.pem \
45-
| jq --args '.manifests[].signature_info.issuer' "XYZ Inc."
45+
| jq --args '.manifests[].signature_info.issuer'
4646
```
4747

48+
The response should be something like this:
49+
50+
```
51+
"XYZ Inc."
52+
```
53+
54+
Where "XYZ Inc." is the name of your organization.
55+
4856
1. **Use `openssl` to perform basic verification of the certificate** you're submitting; for example:
4957

5058
```

0 commit comments

Comments
 (0)