DID Management Platform
A DID Platform provides tools to manage decentralized identities, keys, attributes, and rights associated with an entity (person, organization, or device). Each DID contains a DID Document, which holds public keys, verification methods, services, and permissions.
All onboarding steps should first be performed on the Testnet environment for testing, and once validated, the same steps can be applied on Mainnet for production use:
Testnet: https://identity-sandbox.zetrix.com/
Mainnet: https://identity.zetrix.com/

The following functionalities represent the core operations in a DID Management Console:
Change Owner
Purpose: Transfer ownership or administrative rights of a DID to another entity.
How it works:
Every DID has an owner (often defined via controller DID).
The owner can be changed by updating the DID Document’s controller field.
After update, the new owner gains full control of:
key creation/removal
delegation management
attribute management
credential signing rights (if applicable)
Use cases:
Organization transferring DID ownership to a new department.
Rotating root level admin keys.
Enforcing governance or recovering compromised ownership.
Steps:
The Issuer will login Zetrix Wallet and log in to website to change the owner. The steps are as follows:
Click on Change Owner.
Fill up the new owner DID.
Update.
Submit sign using pop up wallet.

Manage Attribute
Purpose: Add or remove metadata linked to a DID.
Common DID Attributes include:
service entries (API endpoints, VC endpoints)
cryptographic fingerprint
Attribute Management includes:
Add attribute – Insert a new attribute (e.g., service endpoint).
Delete attribute – Remove outdated or invalid attributes.
Use cases:
Add an Issuer’s Verification endpoint (
/verify).Adding a DIDComm messaging endpoint.
Storing public profile (organization name, logo URL, contact email).
Steps:
The Issuer will login Zetrix Wallet and log in to website to manage the attribute. The steps are as follows:
Click on Manage Attribute.
Click on Add Attribute.
Please select Algorithms and Encoding needed.
The algorithm specifies the cryptographic algorithm used by the public key you are adding.
Ed25519 – general signing, authentication
X25519 – encryption / key agreement
BBS+ – zero knowledge proof credentials
Encoding describes how the public key is formatted when stored in the DID Document.
Hex – Public key shown in raw hexadecimal bytes. Example field:
publicKeyHexBase64 – Common web safe format used in WebCrypto. Example field:
publicKeyBase64Base58 – Human friendly Base58 format. Example field:
publicKeyBase58Multibase – Base58 or Base64 but with a prefix (like
z) telling the system which encoding is used. Example field:publicKeyMultibasePEM – RSA key format with
-----BEGIN PUBLIC KEY-----. Example field:publicKeyPem
Enter Public Key Value in the input textbox.
Update.
Submit sign using pop up wallet.



Update Delegation
Purpose: Assign or modify delegated permissions for another DID or key.
There are two common types:
Authentication Delegation
Allows another DID or key to authenticate as the DID owner (e.g., login or signing).
Authorization Delegation
Allows a delegate to perform specific actions such as:
issuing credentials
managing sub-identities
signing VC metadata
administering services
Operations include:
Add delegation (assign delegate DID)
Revoke delegation (remove delegate rights)
Use cases:
Company CEO DID delegating signing authority to HR manager DID.
An IoT hub delegating actions to child IoT devices.
Rotating delegated keys without changing DID ownership.
Steps:
The Issuer will login Zetrix Wallet and log in to website to update delegation. The steps are as follows:
Click on Update Delegation.
Click on Add Delegation.
Enter delegate DID for delegation.
Choose type of delegation for
Signature Authentication
Verification Key
Add validity for use case.
Update.
Submit sign using pop up wallet.



Create BBS+ Key
Purpose: Generate a BBS+ signing key pair, used for Zero-Knowledge Proof (ZKP) credentials.
BBS+ Capabilities:
Multi-message signatures
Selective disclosure
Privacy preserving Verifiable Credentials
Support for W3C VC ZKP formats
Where BBS+ is used:
Issuers create BBS+ keys to sign credentials such as:
education certificates
IDs with ZKP support
medical or employment credentials
Holders can generate proofs revealing only required fields.
Example: If a VC contains (Name, DOB, Nationality, Address), BBS+ allows revealing only (Nationality) without exposing the rest.
Steps:
The Issuer will login Zetrix Wallet and log in to website to create a BBS+ Key. The steps are as follows:
Create BBS++ Key.
Generate Key.
Add Validity for use case.
Submit/Update.
Submit sign using pop up wallet.


The BBS+ public key will be displayed in your ZID document after it is created.

Create X25519 Key
Purpose: Generate an X25519 key pair for secure encryption and key exchange.
X25519 is used for:
DIDComm v2 messaging
Encrypted communication
Secure session key negotiation
Holder ↔ Verifier secure data exchange
Why X25519?
Lightweight and fast
Modern elliptic curve cryptography
Strong forward secrecy
Recommended for DID secure messaging protocols
Use cases:
Establish encrypted channels for Verifiable Presentation (VP).
Encrypt wallet to server communication.
DID-based encrypted chat systems.
Steps:
The Issuer will login Zetrix Wallet and log in to website to create X25519 key. The steps are as follows:
Click on Create X25519 Key.
Click on Generate Key and will auto generated below.
Add validity date for use case.
Update.
Submit sign using pop up wallet.


Last updated