diff --git a/index.html b/index.html index 7ea4b97..757bee0 100644 --- a/index.html +++ b/index.html @@ -29,8 +29,6 @@
-
-
diff --git a/media/README.md b/media/README.md deleted file mode 100644 index 6e2da24..0000000 --- a/media/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Media direcory - -Store publication assets such as images in this directory. Text files go in `/sections`. diff --git a/media/signing.mermaid b/media/signing.mermaid deleted file mode 100644 index 28476a9..0000000 --- a/media/signing.mermaid +++ /dev/null @@ -1,33 +0,0 @@ -graph TD; - Request--"JSON(payload)"-->SignA; - SignA--"JWE(JWS(JSON(payload)))"-->SignB; - SignB--"JSON(payload)"-->Proc; - Proc--"JSON(payload)"-->SignC; - SignC--"JWS(JWE(JSON(payload)))"-->SignD; - SignD--"JSON(payload)"-->Response; - - - direction TB - subgraph Service Provider - direction TB - SignB("Decrypt with Provider private key
- -----------------------
- Verify signature with Requester public key") - Proc(Process Request) - SignC("Sign with Provider private key
- -----------------------
- Encrypt with Requester public key") - - end - subgraph Service Requester - direction TB - Request:::sc - SignA("Sign with Requester private key
- -----------------------
- Encrypt with Provider public key") - SignD("Decrypt with Requester private key
- -----------------------
- Verify signature with Provider public key") - classDef sc fill:#f96 - Response:::sc - end \ No newline at end of file diff --git a/sections/signing.md b/sections/signing.md deleted file mode 100644 index b66b708..0000000 --- a/sections/signing.md +++ /dev/null @@ -1,8 +0,0 @@ -# Encryption in combination with signing - -The following diagram shows the order in which encryption & signing must be applied when encryption is used in combination with signing. -
-
-
-
Signing & Encryption
-