Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

feat: Add Identity Hub concepts documentation #207

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
249 changes: 249 additions & 0 deletions developer/wip/for-adopters/Identity Hub Concepts.md

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions developer/wip/for-adopters/centralized-identity.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions developer/wip/for-adopters/ih-deployments.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added developer/wip/for-adopters/issuance-flow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions developer/wip/for-adopters/issuance-flow.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
@startuml
!pragma layout smetana

!include diagram.styles.puml

autonumber

box "Participant"
participant "Client" as C
participant "Identity Hub" as IH
end box

box "Issuer"
participant "Issuer Service(s)" as IS #FFF4B3
end box

C -> IH: Initiate process
IH -> IS: Request Credential using Self-Issued ID token
IS -> IH: (async) )Write Membership Credential


@enduml
Binary file added developer/wip/for-adopters/token-use.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions developer/wip/for-adopters/token-use.puml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@startuml
!pragma layout smetana

!include diagram.styles.puml

autonumber

box "Data Consumer"
participant "Connector" as C
participant "Identity Hub" as IH
end box

box "Data Provider"
participant "Connector" as PC
end box

C -> IH: SI token request
IH -> C: Token response w/ access token

C-> PC: Request w/ si token and access token
PC-> IH: request w/ access token
IH ->PC: VP response
@enduml
Loading