@twin.org/standards-w3c-did 0.0.1-next.12 → 0.0.1-next.14
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.
|
@@ -13,12 +13,16 @@ export interface IDidProof {
|
|
|
13
13
|
* JSON-LD Type.
|
|
14
14
|
*/
|
|
15
15
|
type: typeof DidTypes.DataIntegrityProof;
|
|
16
|
+
/**
|
|
17
|
+
* An identifier for the cryptographic suite that can be used to verify the proof.
|
|
18
|
+
*/
|
|
19
|
+
cryptosuite: string;
|
|
16
20
|
/**
|
|
17
21
|
* The id of the proof.
|
|
18
22
|
*/
|
|
19
23
|
id?: string;
|
|
20
24
|
/**
|
|
21
|
-
* The
|
|
25
|
+
* The reason the proof was created.
|
|
22
26
|
*/
|
|
23
27
|
proofPurpose: string;
|
|
24
28
|
/**
|
package/docs/changelog.md
CHANGED
|
@@ -21,6 +21,14 @@ JSON-LD Type.
|
|
|
21
21
|
|
|
22
22
|
***
|
|
23
23
|
|
|
24
|
+
### cryptosuite
|
|
25
|
+
|
|
26
|
+
> **cryptosuite**: `string`
|
|
27
|
+
|
|
28
|
+
An identifier for the cryptographic suite that can be used to verify the proof.
|
|
29
|
+
|
|
30
|
+
***
|
|
31
|
+
|
|
24
32
|
### id?
|
|
25
33
|
|
|
26
34
|
> `optional` **id**: `string`
|
|
@@ -33,7 +41,7 @@ The id of the proof.
|
|
|
33
41
|
|
|
34
42
|
> **proofPurpose**: `string`
|
|
35
43
|
|
|
36
|
-
The
|
|
44
|
+
The reason the proof was created.
|
|
37
45
|
|
|
38
46
|
***
|
|
39
47
|
|