Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding architecture diagram based on README description #151

Merged
merged 1 commit into from
Mar 27, 2024
Merged
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
25 changes: 25 additions & 0 deletions arch_diagram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
```mermaid
%%{init: {'theme':'neutral'}}%%
graph
subgraph browser
EXTUI([Extension UI\nSensitive data allowed\nNo external scripts!!!])-- Signed Header requests -->BSCRIPT[\Background script - message coordinator\nSensitive data allowed\]
SIGN([User Signing Assocation]) --> EXTUI
AID([User selected identifier]) --> SIGN
CRED([User selected credential]) --> SIGN
AUTO([User selected auto-signin]) --> SIGN
PASS([User Passcode])--Temporarily Stored-->EXTUI
subgraph example web app
CONTENT[\Content Script\]-- Active tab\nmessages-->BSCRIPT;
WEBPG{{Web Page}}-- Active tab +\nSigning Assoc-->BSCRIPT;
CONTENT --> DIALOG[\Dialog HTML\];
DIALOG --> WEBPG;
end
end
BSCRIPT-- Boot Agent -->AGENT{{KERIA Agent}};
BSCRIPT-- Signed Header requests -->AGENT{{KERIA Agent}};
AGENT{{KERIA Agent}}-- Identifiers -->BSCRIPT;
AGENT{{KERIA Agent}}-- Credentials -->BSCRIPT;

BSCRIPT-- Identifiers -->EXTUI;
BSCRIPT-- Credentials -->EXTUI;
```