Skip to content

Commit 053c03e

Browse files
committed
Add deprecation note.
1 parent 467ccc2 commit 053c03e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## Information
44

5-
This is an implementation of the following cryptographic suites for [Linked Data Proofs](https://w3c-ccg.github.io/ld-proofs/):
5+
**This library is deprecated and continued as [data-integrity-java](https://github.com/danubetech/data-integrity-java).**
6+
7+
It provides an implementation of the following cryptographic suites for [Linked Data Proofs](https://w3c-ccg.github.io/ld-proofs/):
68

79
- [Ed25519Signature2018](https://w3c-ccg.github.io/lds-ed25519-2018/)
810
- [Ed25519Signature2020](https://w3c-ccg.github.io/lds-ed25519-2020/)
@@ -61,7 +63,7 @@ Example code:
6163
signer.setVerificationMethod(URI.create("https://example.com/jdoe/keys/1"));
6264
signer.setDomain("example.com");
6365
signer.setNonce("343s$FSFDa-");
64-
LdProof ldProof = signer.sign(jsonLdObject);
66+
LdProof dataIntegrityProof = signer.sign(jsonLdObject);
6567

6668
System.out.println(jsonLdObject.toJson(true));
6769

0 commit comments

Comments
 (0)