LearnCard Documentation
GithubStatusSupportLaunch App
  • 🚀Introduction
    • What is LearnCard?
    • Use Cases & Possibilities
    • Ecosystem Architecture
  • ⚡Quick Start
    • Setup & Prerequisites
    • Your First Integration
  • 📚Tutorials
    • Create a Credential
    • Create a Boost
    • Create a ConsentFlow
    • Create a Connected Website
    • Send xAPI Statements
    • Listen to Webhooks
  • ✅How-To Guides
    • Verify My Issuer
    • Connect Systems
      • Connect a Website
      • Connect a Game
    • Implement Flows
      • Claim Data after Guardian Consent
      • Connect via CHAPI
        • ⭐CHAPI Wallet Setup Guide
        • ↔️Translating to CHAPI documentation
        • 🖥️Demo Application
        • 🔰Using LearnCard to Interact with a CHAPI Wallet
        • 📝Cheat Sheets
          • Issuers
          • Wallets
    • Deploy Infrastructure
      • Remote Key Management
      • Generate API Tokens
      • Signing Authority
      • Connect to Independent Network
      • Build a Plugin
  • 🛠️SDKs & API Reference
    • LearnCard Wallet SDK
      • Authentication
      • Usage Examples
      • SDK Reference
      • Plugin API Reference
      • Integration Strategies
      • Deployment
      • Troubleshooting
      • Changelog
    • LearnCloud Network API
      • Authentication
      • Usage Examples
      • Architecture
      • Notifications & Webhooks
      • Profiles
      • Profile Managers
      • Credentials
      • Boosts
      • Presentations
      • Storage
      • Contracts
      • DID Metadata
      • Claim Hooks
      • Auth Grants
      • Utilities
      • Models
      • OpenAPI
    • LearnCloud Storage API
      • Authentication
      • Usage Examples
      • Architecture
      • Storage
      • Index
      • User
      • Custom Storage
      • Utilities
      • Models
      • xAPI Reference
    • Plugins
      • Crypto
      • DIDKit
      • DID Key
      • Dynamic Loader
      • VC
        • Expiration Sub-Plugin
      • VC-Templates
      • VC-API
      • Ceramic
      • IDX
      • VPQR
      • Ethereum
      • CHAPI
      • LearnCard Network
      • LearnCloud
      • LearnCard
      • Simple Signing
      • Claimable Boosts
    • LearnCard CLI
  • 🧠Core Concepts
    • Identities & Keys
      • Decentralized Identifiers (DIDs)
      • Seed Phrases
      • Network Profiles
      • Signing Authorities
      • Trust Registries
    • Credentials & Data
      • Verifiable Credentials (VCs)
      • Credential Lifecycle
      • Schemas, Types, & Categories
      • Building Verifiable Credentials
      • Boost Credentials
      • Getting Started with Boosts
      • Credential URIs
      • xAPI Data
      • General Best Practices & Troubleshooting
    • Consent & Permissions
      • ConsentFlow Overview
      • Consent Contracts
      • User Consent & Terms
      • Consent Transactions
      • Auto-Boosts
      • Writing Consented Data
      • Accessing Consented Data
      • GameFlow Overview
    • Network & Interactions
      • Network Vision & Principles
      • Key Network Procedures
      • Core Interaction Workflows
    • Architecture & Principles
      • Control Planes
      • Plugin System
      • Auth Grants and API Tokens
  • 🔗Development
    • Contributing
Powered by GitBook
On this page
  • DID Methods
  • Verifiable Proof Types
  • ID Control Plane

Was this helpful?

  1. Core Concepts
  2. Identities & Keys

Decentralized Identifiers (DIDs)

PreviousIdentities & KeysNextSeed Phrases

Last updated 10 days ago

Was this helpful?

Decentralized Identifiers (DIDs) are a type of globally unique identifier that enables verifiable, decentralized digital identity. Unlike traditional identifiers, DIDs are:

  • Self-sovereign: Controlled by the identity owner, not a central authority

  • Persistent: Do not require the continued operation of an underlying organization

  • Cryptographically verifiable: Allow the controller to prove control without requiring permission

A DID looks like this: did:method:specific-idstring, where the method specifies how the DID operates.

DID Methods

LearnCard supports multiple DID methods, each with different characteristics:

did:key

Generates a digital ID directly from a cryptographic key, often stored locally (e.g., in a JWK file).

Simple IDs tied directly to a specific crypto key.

did:web

Uses a standard website address (domain name) to make a digital ID's information publicly and securely findable online.

Digital IDs for organizations or websites.

did:pkh

Creates a digital ID directly from a public blockchain address (like a crypto wallet address), supporting multiple blockchain types through a common standard (CAIP).

Linking digital IDs to various blockchain accounts.

did:jwk

Directly transforms a cryptographic key (in JWK format) into a full digital ID and its associated information.

Representing a cryptographic key as a complete digital ID.

did:test

Generates sample digital IDs and related data, specifically for testing software that uses DIDs.

Testing and ensuring DID systems work correctly.

did:ethr

A widely-used method for digital IDs on the Ethereum blockchain, common in many Web3 applications.

Digital IDs for apps and services on Ethereum.

did:ion

Creates highly scalable and decentralized digital IDs using the Bitcoin network, secured by the Sidetree protocol.

Scalable and secure IDs on the Bitcoin blockchain.

did:tezos

Creates digital IDs that are linked to accounts on the Tezos blockchain.

Digital IDs for users and apps on Tezos.

Verifiable Proof Types

Proof Type

Description

Common Use Case

RSASignature2018

A widely recognized digital signature method using RSA cryptography, common in traditional web security.

Verifying authenticity in systems familiar with established RSA standards.

Ed25519VerificationKey2018 / Ed25519Signature2018

A modern, fast, and secure digital signature method using Ed25519 keys.

High-performance, secure verification in newer systems and many blockchains.

EcdsaSecp256k1Signature2019

A digital signature method widely used by Bitcoin, Ethereum, and other blockchain platforms (uses the secp256k1 curve).

Securing transactions and identities in many popular blockchain ecosystems.

EcdsaSecp256r1Signature2019

A digital signature method commonly used in web security (like TLS/SSL) and various industry standards (uses the P-256 curve).

Ensuring authenticity in standard web communications and enterprise applications.

EcdsaSecp256k1RecoverySignature2020

A specialized digital signature (secp256k1 curve) where the signer's public key (or address) can be found directly from the signature itself.

Creating compact proofs in systems like Ethereum where sender identity is derived.

Eip712Signature2021

A way to sign structured, human-readable data on Ethereum, making it clearer to users what they are approving.

User-friendly signing of detailed information in Ethereum applications.

JsonWebSignature2020 (JWS)

A standard method for creating digital signatures using JSON, offering flexibility with different signature algorithms.

Securely signing data for web applications and APIs, commonly used with JWTs.

ID Control Plane

When using the , the ID control plane provides standardized methods for working with DIDs:

🧠
LearnCard Wallet SDK