0.1.42 • Published 3 years ago

@aviarytech/didcomm-protocols.present-proof v0.1.42

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
3 years ago

Present Proof DIDComm Protocol

This is version 3 of the present-proof protocol that has been created initially for the WACI-PEX work.

Messages

  1. Propose Presentation
{
    "type": "https://didcomm.org/present-proof/3.0/propose-presentation",
    "id": "95e63a5f-73e1-46ac-b269-48bb22591bfa",
    "pthid": "599f3638-b563-4937-9487-dfe55099d900",
    "from": "did:example:prover",
    "to": "did:example:verifier"
}
  1. Request Presentation
{
  "type": "https://didcomm.org/present-proof/3.0/request-presentation",
  "id": "0ac534c8-98ed-4fe3-8a41-3600775e1e92",
  "thid": "95e63a5f-73e1-46ac-b269-48bb22591bfa",
  "from": "did:example:prover",
  "to": ["did:example:verifier"],
  "body": {},
  "attachments": [
    <Presentation Exchange Definition>
  ]
}
  1. Presentation
{
  "type": "https://didcomm.org/present-proof/3.0/presentation",
  "id": "f1ca8245-ab2d-4d9c-8d7d-94bf310314ef",
  "thid": "95e63a5f-73e1-46ac-b269-48bb22591bfa",
  "from": "did:example:verifier",
  "to": "did:example:prover",
  "body": {},
  "attachments": [
      <Presentation Exchange Submission>
  ]
}