Skip to content

Files

Latest commit

 

History

History
 
 

examples_legacy

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

banner

IOTA Identity Examples

This folder provides code examples for you to learn how IOTA Identity can be used.

You can run each example using

cargo run --example <example_name>

For Instance, to run the example getting_started, use

cargo run --example getting_started

The following examples are available for using the basic account (A high-level API):

# Name Information
1 getting_started Introductory example for you to test whether the library is set up / working properly and compiles.
2 account_create A basic example that generates and publishes a DID Document, the fundamental building block for decentralized identity.
3 account_config How to configure the account to work with different networks and other settings.
4 account_manipulate How to manipulate a DID Document by adding/removing Verification Methods and Services.
5 account_lazy How to take control over publishing DID updates manually, instead of the default automated behavior.
6 account_signing Using a DID to sign arbitrary statements and validating them.
7 account_create_vc Generates and publishes subject and issuer DID Documents, then creates a Verifiable Credential (VC) specifying claims about the subject, and retrieves information through the CredentialValidator API.
8 account_create_vp This example explains how to create a Verifiable Presentation from a set of credentials and sign it.
9 account_revoke_vc Removes a verification method from the Issuers DID Document, making the Verifiable Credential it signed unable to verify, effectively revoking the VC.
10 account_multiple How to create multiple identities from a builder and how to load existing identities into an account.
11 account_unchecked How to update the custom properties of a DID document directly by using the account's unchecked methods.
12 account_encryption Demonstrates Elliptic-curve Diffie-Hellman (ECDH) cryptographic key exchange by encrypting and decrypting data with a shared key.

The following examples are available for using the low-level APIs, which provides more flexibility at the cost of complexity:

# Name Information
1 create_did A basic example that generates and publishes a DID Document, the fundamental building block for decentralized identity.
2 manipulate_did This example demonstrates how to perform a basic update to the integration chain of a DID Document.
3 resolve_history Advanced example that performs multiple updates and demonstrates how to resolve the DID Document history to view them.
4 resolve_did A basic example that shows how to retrieve information through DID Document resolution/dereferencing.
5 key_exchange Demonstrates Elliptic-curve Diffie-Hellman (ECDH) cryptographic key exchange with DID Documents.
6 private_tangle Showcases the same procedure as create_did, but on a private tangle - a locally running hornet node.