Skip to content

Instantly share code, notes, and snippets.

@AljoschaMeyer
Created December 23, 2017 08:48
Show Gist options
  • Save AljoschaMeyer/2dbb2c568f55a84e78d5b6f75d058c98 to your computer and use it in GitHub Desktop.
Save AljoschaMeyer/2dbb2c568f55a84e78d5b6f75d058c98 to your computer and use it in GitHub Desktop.
digraph OverallApproach {
/* rankdir=LR; */
node [shape=box];
ssbclient[label="ssb-client"];
ms[label="multiserver"];
muxrpc[label="muxrpc"];
ssbconf[label="ssb-config"];
ssbkeys[label="ssb-keys"];
ps[label="packet-stream"];
pscodec[label="packet-stream-codec"];
shs[label="secret-handshake"];
privatebox[label="private-box"];
boxstream[label="box-stream"];
sodium[label="sodium"];
ssbclient -> ms
ssbclient -> muxrpc
ssbclient -> ssbconf
ssbclient -> ssbkeys
ms -> shs
muxrpc -> ps
muxrpc -> pscodec
ssbkeys -> privatebox
ssbkeys -> sodium
privatebox -> sodium
shs -> sodium
shs -> boxstream
boxstream -> sodium
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment