https://github.com/iotaledger/identity
Implementation of the Decentralized Identity standards such as DID and Verifiable Credentials by W3C for the IOTA MoveVM.
https://github.com/iotaledger/identity
decentralized-identity did self-sovereign-identity verifiable-credentials
Last synced: about 1 month ago
JSON representation
Implementation of the Decentralized Identity standards such as DID and Verifiable Credentials by W3C for the IOTA MoveVM.
- Host: GitHub
- URL: https://github.com/iotaledger/identity
- Owner: iotaledger
- License: apache-2.0
- Created: 2020-02-06T14:33:11.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2025-08-08T08:58:26.000Z (10 months ago)
- Last Synced: 2025-08-08T09:25:12.684Z (10 months ago)
- Topics: decentralized-identity, did, self-sovereign-identity, verifiable-credentials
- Language: Rust
- Homepage: https://www.iota.org
- Size: 20.1 MB
- Stars: 326
- Watchers: 26
- Forks: 95
- Open Issues: 114
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: .github/SECURITY.md
Awesome Lists containing this project
README

Introduction ◈
Documentation & Resources ◈
Bindings ◈
gRPC ◈
Roadmap ◈
Contributing
---
> [!NOTE]
> This version of the library is compatible with IOTA Rebased networks and in active development, for a version of the library compatible with IOTA Stardust networks check [here](https://github.com/iotaledger/identity/tree/support/v1.5)
## Introduction
IOTA Identity is a [Rust](https://www.rust-lang.org/) implementation of decentralized digital identity, also known as Self-Sovereign Identity (SSI). It implements the W3C [Decentralized Identifiers (DID)](https://www.w3.org/TR/did-core/) and [Verifiable Credentials](https://www.w3.org/TR/vc-data-model/) specifications. This library can be used to create, resolve and authenticate digital identities and to create verifiable credentials and presentations in order to share information in a verifiable manner and establish trust in the digital world. It does so while supporting secure storage of cryptographic keys, which can be implemented for your preferred key management system. Many of the individual libraries (Rust crates) are agnostic over the concrete DID method, with the exception of some libraries dedicated to implement the [IOTA DID method](https://docs.iota.org/references/iota-identity/iota-did-method-spec/), which is an implementation of decentralized digital identity on IOTA Rebased networks. Written in stable Rust, IOTA Identity has strong guarantees of memory safety and process integrity while maintaining exceptional performance.
## Documentation and Resources
- [Identity Documentation Pages](https://docs.iota.org/iota-identity): Supplementing documentation with context around identity and simple examples on library usage.
- API References:
- [Rust API Reference](https://iotaledger.github.io/identity/identity_iota/index.html): Package documentation (cargo docs).
- [Wasm API Reference](https://docs.iota.org/references/iota-identity/wasm/api_ref): Wasm Package documentation.
- Examples:
- [Rust Examples](https://github.com/iotaledger/identity/tree/main/examples): Practical code snippets to get you started with the library in Rust.
- [Wasm Examples](https://github.com/iotaledger/identity/tree/main/bindings/wasm/identity_wasm/examples): Practical code snippets to get you started with the library in TypeScript/JavaScript.
## Bindings
[Foreign Function Interface (FFI)](https://en.wikipedia.org/wiki/Foreign_function_interface) Bindings of this [Rust](https://www.rust-lang.org/) library to other programming languages:
- [Web Assembly](https://github.com/iotaledger/identity/tree/main/bindings/wasm/identity_wasm/) (JavaScript/TypeScript)
## gRPC
We provide a collection of experimental [gRPC services](https://github.com/iotaledger/identity/tree/main/bindings/grpc/)
## Roadmap and Milestones
For detailed development progress, see the IOTA Identity development [kanban board](https://github.com/orgs/iotaledger/projects/8/views/5).
## Contributing
We would love to have you help us with the development of IOTA Identity. Each and every contribution is greatly valued!
Please review the [contribution](https://docs.iota.org/iota-identity/contribute) sections in the [IOTA Docs Portal](https://docs.iota.org/iota-identity).
To contribute directly to the repository, simply fork the project, push your changes to your fork and create a pull request to get them included!
The best place to get involved in discussions about this library or to look for support at is the `#identity` channel on the [IOTA Discord](https://discord.iota.org). You can also ask questions on our [Stack Exchange](https://iota.stackexchange.com/).