5 stable releases

2.1.2 Apr 25, 2023
2.1.1 Apr 24, 2023
2.1.0 Mar 15, 2023
2.0.1 Sep 14, 2022
2.0.0 Jun 17, 2022

#3 in #poly-mesh

Download history 14/week @ 2024-02-26 8/week @ 2024-03-11 70/week @ 2024-04-01

78 downloads per month

Apache-2.0

250KB
4.5K SLoC

Confidential Identity Library

This library implements the Confidential Identity Library protocol, as described here. The cryptographic building blocks are described here.

Refer to the README.md file in the root of the repository for build instructions.

The library provides the following APIs.

  • Rust library: current directory
  • FFI Wrappers: ./ffi
  • WASM library: ./wasm
  • CLI: ./cli

Library Description

CDD Claims and Scope Claims are types of claims that can be attached to an investor's identity on the PolyMesh. CDD claims are registered by a trusted CDD provider using cdd-register-did API, and Scope claims are created and added to the chain by the investor using add_claim API.

CDD claims are generated by a PolyMesh trusted CDD provider during the CDD process (see cdd-register-did), and privately link an investor's unique id (investor_unique_id, which is kept secret between the investor and CDD provider) to their on-chain identity (investor_did, the serialized IdentityId of the investor). In order to achieve this, the CDD provider has to generate a CDD Id, include it in their claim, and submit it to the PolyMesh chain. Note that every time an investor requests a new identity from a CDD provider, the same unique identity (which is obtained from the Polymath Unique Identity System (PUIS)) must be used to create the CDD claim, even though the investor's DID will be different. A CDD claim has the following format.

{
  "investor_did":[32_bytes_array],
  "investor_unique_id":[16_bytes_array]
}

Scope Claims are generated by the investors and reference a specific scope (e.g. asset); see add_claim. The investor must generate this claim for each identity that they wish to use to invest in a particular asset (i.e. scope). Currently scope_did is set to be the asset's ticker name (a 12 bytes string, e.g. AAPL). The Scope Claim has the following format.

{
  "scope_did":[12_bytes_array],
  "investor_unique_id":[16_bytes_array]
}

Dependencies

~7–21MB
~267K SLoC