@@ -21,25 +21,33 @@ jobs:
21
21
uses : transmute-industries/transmute@main
22
22
with :
23
23
transmute : |
24
- scitt issue-statement ./tests/fixtures/private.sig.key.cbor ./tests/fixtures/message.json --output ./tests/fixtures/message.hash-envelope.cbor
24
+ scitt issue-statement ./tests/fixtures/private.sig.key.cbor \
25
+ ./tests/fixtures/message.json \
26
+ --output ./tests/fixtures/message.hash-envelope.cbor
25
27
- name : Verify Statement Hash
26
28
id : verify_message
27
29
uses : transmute-industries/transmute@main
28
30
with :
29
31
transmute : |
30
- scitt verify-statement-hash ./tests/fixtures/public.sig.key.cbor ./tests/fixtures/message.hash-envelope.cbor 3073d614f853aaec9a1146872c7bab75495ee678c8864ed3562f8787555c1e22
32
+ scitt verify-statement-hash ./tests/fixtures/public.sig.key.cbor \
33
+ ./tests/fixtures/message.hash-envelope.cbor \
34
+ 3073d614f853aaec9a1146872c7bab75495ee678c8864ed3562f8787555c1e22
31
35
- name : Issue Receipt
32
36
id : issue_receipt
33
37
uses : transmute-industries/transmute@main
34
38
with :
35
39
transmute : |
36
- scitt issue-receipt ./tests/fixtures/private.notary.key.cbor ./tests/fixtures/message.hash-envelope.cbor --log ./tests/fixtures/trans.json
40
+ scitt issue-receipt ./tests/fixtures/private.notary.key.cbor \
41
+ ./tests/fixtures/message.hash-envelope.cbor \
42
+ --log ./tests/fixtures/trans.json
37
43
- name : Verify Receipt Hash
38
44
id : verify_receipt
39
45
uses : transmute-industries/transmute@main
40
46
with :
41
47
transmute : |
42
- scitt verify-receipt-hash ./tests/fixtures/public.notary.key.cbor ./tests/fixtures/message.hash-envelope-with-receipt.cbor 3073d614f853aaec9a1146872c7bab75495ee678c8864ed3562f8787555c1e22
48
+ scitt verify-receipt-hash ./tests/fixtures/public.notary.key.cbor \
49
+ ./tests/fixtures/message.hash-envelope-with-receipt.cbor \
50
+ 3073d614f853aaec9a1146872c7bab75495ee678c8864ed3562f8787555c1e22
43
51
` ` `
44
52
45
53
See [CI](./.github/workflows/ci.yml) for more examples.
@@ -79,7 +87,8 @@ credentialSubject:
79
87
transmute jose keygen --alg ES256 \
80
88
--output ./tests/fixtures/private.sig.jwk.json
81
89
82
- transmute vcwg issue-credential ./tests/fixtures/private.sig.jwk.json ./tests/fixtures/issuer-disclosable-claims.yaml \
90
+ transmute vcwg issue-credential ./tests/fixtures/private.sig.jwk.json \
91
+ ./tests/fixtures/issuer-disclosable-claims.yaml \
83
92
--credential-type application/vc-ld+sd-jwt \
84
93
--output ./tests/fixtures/issuer-disclosable-claims.sd-jwt
85
94
```
@@ -149,12 +158,12 @@ jobs:
149
158
150
159
<img src="./docs/receipt.png" alt="graph query results" />
151
160
152
- ` ` `
161
+ <!--
153
162
MATCH (statement {
154
- subject : ' https://spdx.org/... sbom-tool-2.2.7... /0.9.2/2e57d4b2d9b45cccdd74dad91edbaabaa06074f9'
163
+ subject: 'https://spdx.org/spdxdocs/ sbom-tool-2.2.7-66a07f86-0f12-4c6f-887b-9a1510b11d8a/transmute /0.9.2/2e57d4b2d9b45cccdd74dad91edbaabaa06074f9'
155
164
})
156
165
MATCH (receipt {
157
166
subject: statement.subject
158
167
})
159
168
RETURN statement, receipt
160
- ```
169
+ -->
0 commit comments