This plugin draws inspiration from eddsa-rdfc-2022-cryptosuite and is implemented as a plugin for Veramo. It adheres to the Data Integrity EdDSA Cryptosuites v1.0 specification to generate a Credential Data Integrity for credentials.
This plugin contains a message handler for issuing and verifying credentials that adhere to W3C standards.
This plugin is in the early stages of development and is not yet ready for production use. It is not recommended to use this plugin in a production environment.
Currently, this plugin cannot be used alongside other plugins due to limitations in the Veramo core plugins. We plan to update the plugin in the future to enable compatibility with other plugins.
If you want to try using the Credential Data Integrity plugin with a did:web
DID, you can use the following example to create a Web DID Document router.
-
Create a Web DID Document router. You can use the following docs: Set up Web DID Document Router
-
Declare the plugin in your Veramo agent:
credentialIssuerLD:
$require: '@veramo/credential-ld#CredentialIssuerLD'
$args:
- suites:
- $require: '@uncefact/vckit-credential-data-integrity#VCkitEddsaRdfc2022'
# others should be included here
contextMaps:
- $require: '@uncefact/vckit-credential-data-integrity?t=object#contexts'
# others should be included here
You can issue a new verifiable credential by using the /agent/routeCreationVerifiableCredential
API endpoint with the proof format set to lds
. The issuer can be a did:web
.
The example below shows how to issue a credential with the Data Integrity Integrity plugin. You can replace the issuer
and credentialSubject
with your own data.
curl --request POST \
--url http://localhost:3332/agent/routeCreationVerifiableCredential \
--header 'Content-Type: application/json' \
--data '{
"credential": {
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://w3id.org/security/multikey/v1",
"https://w3id.org/security/data-integrity/v2"
],
"type": [
"VerifiableCredential"
],
"issuer": "did:web:example.com",
"issuanceDate": "2021-01-01T19:23:24Z",
"credentialSubject": {
"id": "did:example:456",
"name": "John Doe"
}
},
"proofFormat": "lds",
"save": true,
"fetchRemoteContexts": true
}'
curl --request POST \
--url http://localhost:3332/agent/routeCreationVerifiableCredential \
--header 'Content-Type: application/json' \
--data '{
"credential": {
"@context": [
"https://www.w3.org/ns/credentials/v2",
"https://w3id.org/security/multikey/v1",
"https://w3id.org/security/data-integrity/v2"
],
"id": "http://university.example/credentials/1872",
"type": [
"VerifiableCredential",
"ExampleAlumniCredential"
],
"issuer": "did:web:example.com",
"validFrom": "2010-01-01T19:23:24Z",
"credentialSchema": {
"id": "https://example.org/examples/degree.json",
"type": "JsonSchema"
},
"credentialSubject": {
"id": "did:example:123",
"degree": {
"type": "BachelorDegree",
"name": "Bachelor of Science and Arts"
}
}
},
"proofFormat": "lds",
"save": true,
"fetchRemoteContexts": true
}'
You can verify the verifiable credential by using the /agent/routeVerificationCredential
API endpoint.
The examples below show how to verify the verifiable credentials in the examples above using the Data Integrity proof.
curl --request POST \
--url http://localhost:3332/agent/routeVerificationCredential \
--header 'Content-Type: application/json' \
--data '{
"credential": {
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://w3id.org/security/multikey/v1",
"https://w3id.org/security/data-integrity/v2"
],
"type": [
"VerifiableCredential"
],
"issuer": "did:web:example.com",
"issuanceDate": "2021-01-01T19:23:24Z",
"credentialSubject": {
"id": "did:example:456",
"name": "John Doe"
},
"proof": {
"type": "DataIntegrityProof",
"created": "2024-07-21T15:39:40Z",
"verificationMethod": "did:web:example.com#14fe3440c6d669edd8a63dc92b571fb0973fd4b832444014e69bcf8cebd38853",
"cryptosuite": "eddsa-rdfc-2022",
"proofPurpose": "assertionMethod",
"proofValue": "z2S6qW6k6M6eXuqGkX5vdydqveSNVBSZf46MxxjY5ukv8gL741pos3yywT9mGTjKJzdjxQvaCSSVtCAngoAWQzNnq"
}
},
"fetchRemoteContexts": true
}'
curl --request POST \
--url http://localhost:3332/agent/routeVerificationCredential \
--header 'Content-Type: application/json' \
--data '{
"credential": {
"@context": [
"https://www.w3.org/ns/credentials/v2",
"https://w3id.org/security/multikey/v1",
"https://w3id.org/security/data-integrity/v2"
],
"id": "http://university.example/credentials/1872",
"type": [
"VerifiableCredential",
"ExampleAlumniCredential"
],
"issuer": "did:web:example.com",
"validFrom": "2010-01-01T19:23:24Z",
"credentialSchema": {
"id": "https://example.org/examples/degree.json",
"type": "JsonSchema"
},
"credentialSubject": {
"id": "did:example:123",
"degree": {
"type": "BachelorDegree",
"name": "Bachelor of Science and Arts"
}
},
"issuanceDate": "2024-07-25T09:25:22.788Z",
"proof": {
"type": "DataIntegrityProof",
"created": "2024-07-25T09:25:23Z",
"verificationMethod": "did:web:example.com#a0b90e4ec2c9fbc63c50f230b98ea8335af1da5bba9472684519ae7da11273d6",
"cryptosuite": "eddsa-rdfc-2022",
"proofPurpose": "assertionMethod",
"proofValue": "zbS3i4uaUzAw1J7Eb544Tgqfo8azhJkx3jGS5wtk4WCBe2CkAZyLEnX7Au7n3anEtTWaG9f283NF2rzJEsxFKjPE"
}
},
"fetchRemoteContexts": true
}'