Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 506 Bytes

10_auth-service.md

File metadata and controls

41 lines (31 loc) · 506 Bytes

auth-service

The auth-service is responsible for authenticating users and issuing JWTs.

flowchart LR
    subgraph "Worker"
        id1 --- id2 --- id3
        id1 --- id4
    end
    id5 --- id1


    id1[Handlers]
    id2(DataStore)
    id3(Cache)
    id4(KeyStore)
    id5[Clients]
Loading

Handlers

System Handlers:

  • Canary
  • Time
  • Health

Identity Handlers:

  • Join
  • Leave
  • Rotate
  • View

Session Handlers:

  • Login
  • Logout

Capability Handlers:

  • Attest (verify)
  • Accredit (sign)