├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── auth0 └── node-deploy-cli │ ├── .env.example │ ├── .gitignore │ ├── data │ └── clients │ │ ├── authenticator.json │ │ └── portal.json │ ├── export.js │ ├── import.js │ ├── package-lock.json │ └── package.json ├── did-configuration.json.example ├── did.json.example ├── doc ├── images │ ├── architecture-diagram.png │ └── ms-verified-credential.png └── video │ ├── auth0-part1.gif │ ├── auth0-part2.gif │ ├── shop-testcase.gif │ └── testcases.gif ├── docker-compose-idp.yml ├── docker-compose-lb.yml ├── docker-compose.yml ├── keycloak ├── Dockerfile └── init.sh ├── nginx ├── apps-location.conf ├── apps-upstream.conf ├── base.conf ├── did-location.conf ├── idp-location.conf └── idp-upstream.conf ├── presentation-employee-display.json ├── presentation-employee-rules-auth0.json ├── presentation-employee-rules.json ├── vc-issuer-app-spring ├── .gitignore ├── Dockerfile ├── README.md ├── docker-build.sh ├── docker-compose.yml ├── pom.xml ├── presentation-employee-display.json ├── presentation-employee-rules.json ├── run.sh └── src │ └── main │ ├── java │ └── com │ │ └── twogenidentity │ │ └── vc │ │ ├── Application.java │ │ ├── config │ │ └── SecurityConfig.java │ │ └── controller │ │ ├── HomeController.java │ │ └── VerifiableCredentialsController.java │ └── resources │ ├── application.yaml │ ├── did-configuration.json │ ├── did.json │ ├── static │ ├── images │ │ ├── enterprise-v2.png │ │ ├── login-v2.png │ │ ├── login.png │ │ ├── magnolia-card.png │ │ └── magnolia-logo.png │ └── js │ │ └── index.js │ └── templates │ ├── error.html │ └── issuer.html ├── vc-verifier-app-node ├── .env.example ├── .gitignore ├── Dockerfile ├── README.md ├── config │ └── vc.config.js ├── controllers │ └── vc.controller.js ├── docker-build.sh ├── package-lock.json ├── package.json ├── public │ ├── images │ │ ├── blockchain.png │ │ ├── enterprise-v2.png │ │ ├── login.png │ │ ├── logo.png │ │ ├── magnolia-card.png │ │ ├── shop-icon.png │ │ ├── shop-logo.png │ │ └── telco-card.png │ ├── index.js │ └── verifier.html ├── server.js └── service │ └── vc.service.js └── vc-verifier-app-spring ├── .gitignore ├── Dockerfile ├── README.md ├── docker-build.sh ├── pom.xml └── src └── main ├── java └── com │ └── twogenidentity │ └── vc │ ├── Application.java │ ├── config │ └── SecurityConfig.java │ └── controller │ ├── HomeController.java │ └── VerifiableCredentialsController.java └── resources ├── application.yaml ├── did-configuration.json ├── did.json ├── static ├── images │ ├── blockchain.png │ ├── enterprise-v2.png │ ├── login.png │ ├── logo-telco-v2.png │ ├── logo.png │ ├── magnolia-card.png │ ├── orion-logo.png │ └── telco-card.png └── js │ └── index.js └── templates ├── error.html └── verifier.html /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/README.md -------------------------------------------------------------------------------- /auth0/node-deploy-cli/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/.env.example -------------------------------------------------------------------------------- /auth0/node-deploy-cli/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .env -------------------------------------------------------------------------------- /auth0/node-deploy-cli/data/clients/authenticator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/data/clients/authenticator.json -------------------------------------------------------------------------------- /auth0/node-deploy-cli/data/clients/portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/data/clients/portal.json -------------------------------------------------------------------------------- /auth0/node-deploy-cli/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/export.js -------------------------------------------------------------------------------- /auth0/node-deploy-cli/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/import.js -------------------------------------------------------------------------------- /auth0/node-deploy-cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/package-lock.json -------------------------------------------------------------------------------- /auth0/node-deploy-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/auth0/node-deploy-cli/package.json -------------------------------------------------------------------------------- /did-configuration.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/did-configuration.json.example -------------------------------------------------------------------------------- /did.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/did.json.example -------------------------------------------------------------------------------- /doc/images/architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/doc/images/architecture-diagram.png -------------------------------------------------------------------------------- /doc/images/ms-verified-credential.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/doc/images/ms-verified-credential.png -------------------------------------------------------------------------------- /doc/video/auth0-part1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/doc/video/auth0-part1.gif -------------------------------------------------------------------------------- /doc/video/auth0-part2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/doc/video/auth0-part2.gif -------------------------------------------------------------------------------- /doc/video/shop-testcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/doc/video/shop-testcase.gif -------------------------------------------------------------------------------- /doc/video/testcases.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/doc/video/testcases.gif -------------------------------------------------------------------------------- /docker-compose-idp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/docker-compose-idp.yml -------------------------------------------------------------------------------- /docker-compose-lb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/docker-compose-lb.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /keycloak/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/keycloak/Dockerfile -------------------------------------------------------------------------------- /keycloak/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/keycloak/init.sh -------------------------------------------------------------------------------- /nginx/apps-location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/nginx/apps-location.conf -------------------------------------------------------------------------------- /nginx/apps-upstream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/nginx/apps-upstream.conf -------------------------------------------------------------------------------- /nginx/base.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/nginx/base.conf -------------------------------------------------------------------------------- /nginx/did-location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/nginx/did-location.conf -------------------------------------------------------------------------------- /nginx/idp-location.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/nginx/idp-location.conf -------------------------------------------------------------------------------- /nginx/idp-upstream.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/nginx/idp-upstream.conf -------------------------------------------------------------------------------- /presentation-employee-display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/presentation-employee-display.json -------------------------------------------------------------------------------- /presentation-employee-rules-auth0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/presentation-employee-rules-auth0.json -------------------------------------------------------------------------------- /presentation-employee-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/presentation-employee-rules.json -------------------------------------------------------------------------------- /vc-issuer-app-spring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/.gitignore -------------------------------------------------------------------------------- /vc-issuer-app-spring/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/Dockerfile -------------------------------------------------------------------------------- /vc-issuer-app-spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/README.md -------------------------------------------------------------------------------- /vc-issuer-app-spring/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/docker-build.sh -------------------------------------------------------------------------------- /vc-issuer-app-spring/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/docker-compose.yml -------------------------------------------------------------------------------- /vc-issuer-app-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/pom.xml -------------------------------------------------------------------------------- /vc-issuer-app-spring/presentation-employee-display.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/presentation-employee-display.json -------------------------------------------------------------------------------- /vc-issuer-app-spring/presentation-employee-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/presentation-employee-rules.json -------------------------------------------------------------------------------- /vc-issuer-app-spring/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/run.sh -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/Application.java -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/config/SecurityConfig.java -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/controller/HomeController.java -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/controller/VerifiableCredentialsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/java/com/twogenidentity/vc/controller/VerifiableCredentialsController.java -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/application.yaml -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/did-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/did-configuration.json -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/did.json -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/static/images/enterprise-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/static/images/enterprise-v2.png -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/static/images/login-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/static/images/login-v2.png -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/static/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/static/images/login.png -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/static/images/magnolia-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/static/images/magnolia-card.png -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/static/images/magnolia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/static/images/magnolia-logo.png -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/static/js/index.js -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /vc-issuer-app-spring/src/main/resources/templates/issuer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-issuer-app-spring/src/main/resources/templates/issuer.html -------------------------------------------------------------------------------- /vc-verifier-app-node/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/.env.example -------------------------------------------------------------------------------- /vc-verifier-app-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/.gitignore -------------------------------------------------------------------------------- /vc-verifier-app-node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/Dockerfile -------------------------------------------------------------------------------- /vc-verifier-app-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/README.md -------------------------------------------------------------------------------- /vc-verifier-app-node/config/vc.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/config/vc.config.js -------------------------------------------------------------------------------- /vc-verifier-app-node/controllers/vc.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/controllers/vc.controller.js -------------------------------------------------------------------------------- /vc-verifier-app-node/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/docker-build.sh -------------------------------------------------------------------------------- /vc-verifier-app-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/package-lock.json -------------------------------------------------------------------------------- /vc-verifier-app-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/package.json -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/blockchain.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/enterprise-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/enterprise-v2.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/login.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/logo.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/magnolia-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/magnolia-card.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/shop-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/shop-icon.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/shop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/shop-logo.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/images/telco-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/images/telco-card.png -------------------------------------------------------------------------------- /vc-verifier-app-node/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/index.js -------------------------------------------------------------------------------- /vc-verifier-app-node/public/verifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/public/verifier.html -------------------------------------------------------------------------------- /vc-verifier-app-node/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/server.js -------------------------------------------------------------------------------- /vc-verifier-app-node/service/vc.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-node/service/vc.service.js -------------------------------------------------------------------------------- /vc-verifier-app-spring/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/.gitignore -------------------------------------------------------------------------------- /vc-verifier-app-spring/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/Dockerfile -------------------------------------------------------------------------------- /vc-verifier-app-spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/README.md -------------------------------------------------------------------------------- /vc-verifier-app-spring/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/docker-build.sh -------------------------------------------------------------------------------- /vc-verifier-app-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/pom.xml -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/Application.java -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/config/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/config/SecurityConfig.java -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/controller/HomeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/controller/HomeController.java -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/controller/VerifiableCredentialsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/java/com/twogenidentity/vc/controller/VerifiableCredentialsController.java -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/application.yaml -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/did-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/did-configuration.json -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/did.json -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/blockchain.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/enterprise-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/enterprise-v2.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/login.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/logo-telco-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/logo-telco-v2.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/logo.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/magnolia-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/magnolia-card.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/orion-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/orion-logo.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/images/telco-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/images/telco-card.png -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/static/js/index.js -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /vc-verifier-app-spring/src/main/resources/templates/verifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twogenidentity/microsoft-verifiable-credentials-workshop/HEAD/vc-verifier-app-spring/src/main/resources/templates/verifier.html --------------------------------------------------------------------------------