sealedrecord 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Recomputes the hash chain, signatures, and time receipts of a sealed session record and reports whether it holds, and if not, at which entry it breaks.
|
|
4
4
|
|
|
5
|
+
Specification: [docs/FORMAT.md](docs/FORMAT.md). How this relates to C2PA: [COMPARISON.md](COMPARISON.md). Live verifier: https://juanlentino.github.io/sealedrecord/
|
|
6
|
+
|
|
7
|
+
## Verify in a browser
|
|
8
|
+
|
|
9
|
+
https://juanlentino.github.io/sealedrecord/ is this library served as static files: drop a record, get a reading. The page imports the published npm tarball of the version it names, is rebuilt only by the release workflow, and makes no network request after it loads. The example buttons use the conformance vectors below.
|
|
10
|
+
|
|
5
11
|
## Install and verify
|
|
6
12
|
|
|
7
13
|
```sh
|
|
@@ -69,7 +75,7 @@ The design the format implements was published before this library existed:
|
|
|
69
75
|
- Provenance as Substrate. SSRN 6730343. https://papers.ssrn.com/abstract=6730343
|
|
70
76
|
- Author ORCID: https://orcid.org/0009-0006-8151-5920
|
|
71
77
|
|
|
72
|
-
The papers argue for what the format commits to and why; the specification says how. Where they differ, the specification governs this implementation.
|
|
78
|
+
The papers argue for what the format commits to and why; the specification says how. Where they differ, the specification governs this implementation. [COMPARISON.md](COMPARISON.md) states how the format relates to C2PA: different objects, different trust, and how they compose.
|
|
73
79
|
|
|
74
80
|
## Conformance vectors
|
|
75
81
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealedrecord",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Verify a sealed session record: recompute the SHA-256 chain, check Ed25519 entry signatures and time receipts, and match audio files to their anchors. WebCrypto only, browser and Node.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|