├── .gitignore ├── README.md ├── diagrams ├── Man-in-the-middle-attack-broken.png ├── Man-in-the-middle-attack-fixed.png ├── Open-eID-web-authentication-components.png ├── Open-eID-web-signing-components.png ├── Web eID Component Model.eap ├── Web-eID-Component-Model.png ├── Web-eID-Safari-Extension-Component-Model.png ├── Web-eID-authentication-communication-diagram.png ├── Web-eID-full-overview.png ├── Web-eID-internals.png ├── Web-eID-signing-communication-diagram.png └── diagrams.net │ ├── Man-in-the-middle attack - broken.html │ ├── Man-in-the-middle attack - fixed with origin.html │ ├── Web eID authentication communication diagram.html │ ├── Web eID internal design.html │ └── Web eID signing communication diagram.html └── docs ├── .nojekyll ├── build.sh ├── index.html ├── web-eid-auth-token-v2-format-spec.md └── web-eid-auth-token-v2-format-spec.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.ldb 2 | *.swp 3 | Thumbs.db* 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/README.md -------------------------------------------------------------------------------- /diagrams/Man-in-the-middle-attack-broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Man-in-the-middle-attack-broken.png -------------------------------------------------------------------------------- /diagrams/Man-in-the-middle-attack-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Man-in-the-middle-attack-fixed.png -------------------------------------------------------------------------------- /diagrams/Open-eID-web-authentication-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Open-eID-web-authentication-components.png -------------------------------------------------------------------------------- /diagrams/Open-eID-web-signing-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Open-eID-web-signing-components.png -------------------------------------------------------------------------------- /diagrams/Web eID Component Model.eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web eID Component Model.eap -------------------------------------------------------------------------------- /diagrams/Web-eID-Component-Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web-eID-Component-Model.png -------------------------------------------------------------------------------- /diagrams/Web-eID-Safari-Extension-Component-Model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web-eID-Safari-Extension-Component-Model.png -------------------------------------------------------------------------------- /diagrams/Web-eID-authentication-communication-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web-eID-authentication-communication-diagram.png -------------------------------------------------------------------------------- /diagrams/Web-eID-full-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web-eID-full-overview.png -------------------------------------------------------------------------------- /diagrams/Web-eID-internals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web-eID-internals.png -------------------------------------------------------------------------------- /diagrams/Web-eID-signing-communication-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/Web-eID-signing-communication-diagram.png -------------------------------------------------------------------------------- /diagrams/diagrams.net/Man-in-the-middle attack - broken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/diagrams.net/Man-in-the-middle attack - broken.html -------------------------------------------------------------------------------- /diagrams/diagrams.net/Man-in-the-middle attack - fixed with origin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/diagrams.net/Man-in-the-middle attack - fixed with origin.html -------------------------------------------------------------------------------- /diagrams/diagrams.net/Web eID authentication communication diagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/diagrams.net/Web eID authentication communication diagram.html -------------------------------------------------------------------------------- /diagrams/diagrams.net/Web eID internal design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/diagrams.net/Web eID internal design.html -------------------------------------------------------------------------------- /diagrams/diagrams.net/Web eID signing communication diagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/diagrams/diagrams.net/Web eID signing communication diagram.html -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/docs/build.sh -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/web-eid-auth-token-v2-format-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/docs/web-eid-auth-token-v2-format-spec.md -------------------------------------------------------------------------------- /docs/web-eid-auth-token-v2-format-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/web-eid/web-eid-system-architecture-doc/HEAD/docs/web-eid-auth-token-v2-format-spec.pdf --------------------------------------------------------------------------------