Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spruceid/didkit
A cross-platform toolkit for decentralized identity.
https://github.com/spruceid/didkit
did jsonld ssi vc vp
Last synced: about 1 month ago
JSON representation
A cross-platform toolkit for decentralized identity.
- Host: GitHub
- URL: https://github.com/spruceid/didkit
- Owner: spruceid
- License: apache-2.0
- Created: 2020-10-06T21:52:28.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-25T11:58:02.000Z (about 2 months ago)
- Last Synced: 2024-10-29T05:07:21.105Z (about 2 months ago)
- Topics: did, jsonld, ssi, vc, vp
- Language: Rust
- Homepage: https://www.spruceid.dev/didkit/didkit
- Size: 1.17 MB
- Stars: 269
- Watchers: 38
- Forks: 76
- Open Issues: 46
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - spruceid/didkit - A cross-platform toolkit for decentralized identity. (Rust)
- awesome-decentralized-identity - DIDKit - An open-source toolkit for creating, resolving, and verifying DIDs and verifiable credentials. (Development Tools and SDKs)
- awesome-decentralized-identity - DIDKit - An open-source toolkit for creating, resolving, and verifying DIDs and verifiable credentials. (Development Tools and SDKs)
README
[![](https://img.shields.io/github/actions/workflow/status/spruceid/didkit/build.yml?branch=main)](https://github.com/spruceid/didkit/actions?query=workflow%3Aci+branch%3Amain)
[![](https://img.shields.io/badge/Docker-19.03.x-blue)](https://www.docker.com/)
[![](https://img.shields.io/badge/ssi-v0.1-green)](https://www.github.com/spruceid/ssi)
[![](https://img.shields.io/badge/License-Apache--2.0-green)](https://github.com/spruceid/didkit/blob/main/LICENSE)
[![](https://img.shields.io/twitter/follow/spruceid?label=Follow&style=social)](https://twitter.com/spruceid)Check out the DIDKit documentation [here](https://spruceid.dev/didkit/didkit/).
# DIDKit
DIDKit provides Verifiable Credential and Decentralized Identifier
functionality across different platforms. It was written primarily in Rust due
to Rust's expressive type system, memory safety, simple dependency web, and
suitability across different platforms including embedded systems. DIDKit
embeds the [`ssi`](https://github.com/spruceid/ssi) library, which contains the
core functionality.## Security Audits
DIDKit has undergone the following security reviews:
- [March 14th, 2022 - Trail of Bits](https://github.com/trailofbits/publications/blob/master/reviews/SpruceID.pdf) | [Summary of Findings](https://blog.spruceid.com/spruce-completes-first-security-audit-from-trail-of-bits/)We are setting up a process to accept contributions. Please feel free to open
issues or PRs in the interim, but we cannot merge external changes until this
process is in place.## Install
### Manual
DIDKit is written in [Rust][]. To get Rust, you can use [Rustup][].
Build DIDKit using [Cargo][]:
```sh
$ cargo build
```
That will give you the DIDKit CLI executable located at
`target/debug/didkit`. You can also build and install DIDKit's components separately. Building the FFI libraries will require additional dependencies. See the corresponding readmes linked below for more info.## Usage
DIDKit can be used in any of the following ways:
- [CLI](cli/) - `didkit` command-line program
- [HTTP](https://github.com/spruceid/didkit-http/) - HTTP server (Rust library and CLI program)
- [FFI](lib/FFI.md) - libraries for C, Java, Android, and Dart/Flutter[Rust]: https://www.rust-lang.org/
[rustup]: https://rustup.rs/
[Cargo]: https://doc.rust-lang.org/cargo/
[ssi]: https://github.com/spruceid/ssi