├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md └── whitepaper ├── .gitignore ├── Makefile ├── biblio.bib ├── dsnp_whitepaper.pdf ├── dsnp_whitepaper.tex └── figures ├── Announcement Metadata Structure.png ├── Batch Message Structure.png ├── Cost Shifting.png ├── DDID Flow For Alice with Two Associates.png ├── Example Batch Process.png ├── Graph Change Events.png ├── Key Storage and Retrieval.png ├── Message Types and Replies.png ├── SaaS Ecosystem.png └── Social Identity Ownership Structure.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/README.md -------------------------------------------------------------------------------- /whitepaper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/.gitignore -------------------------------------------------------------------------------- /whitepaper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/Makefile -------------------------------------------------------------------------------- /whitepaper/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/biblio.bib -------------------------------------------------------------------------------- /whitepaper/dsnp_whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/dsnp_whitepaper.pdf -------------------------------------------------------------------------------- /whitepaper/dsnp_whitepaper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/dsnp_whitepaper.tex -------------------------------------------------------------------------------- /whitepaper/figures/Announcement Metadata Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Announcement Metadata Structure.png -------------------------------------------------------------------------------- /whitepaper/figures/Batch Message Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Batch Message Structure.png -------------------------------------------------------------------------------- /whitepaper/figures/Cost Shifting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Cost Shifting.png -------------------------------------------------------------------------------- /whitepaper/figures/DDID Flow For Alice with Two Associates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/DDID Flow For Alice with Two Associates.png -------------------------------------------------------------------------------- /whitepaper/figures/Example Batch Process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Example Batch Process.png -------------------------------------------------------------------------------- /whitepaper/figures/Graph Change Events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Graph Change Events.png -------------------------------------------------------------------------------- /whitepaper/figures/Key Storage and Retrieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Key Storage and Retrieval.png -------------------------------------------------------------------------------- /whitepaper/figures/Message Types and Replies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Message Types and Replies.png -------------------------------------------------------------------------------- /whitepaper/figures/SaaS Ecosystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/SaaS Ecosystem.png -------------------------------------------------------------------------------- /whitepaper/figures/Social Identity Ownership Structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibertyDSNP/papers/HEAD/whitepaper/figures/Social Identity Ownership Structure.png --------------------------------------------------------------------------------