#Connect Addon Identity Module extension for Firefox.
The latest published version is available at: https://addons.mozilla.org/fr/firefox/addon/web-identity-management/ (v0.2.2 awaiting review by Mozilla, v0.1.2 is unstable)
npm install
npm run start
Firstly it is necessary to register one or more identity card in the extension. This can be done on your Identity Provider profile's page. For instance, our demonstration IdP offer a register button:
https://energyq.idp.rethink.orange-labs.fr/
To verify that the identity card was added to the extension, click on the connect button extension in the browser task bar. This should open a pop-up displaying registered identities.
Navigate to a (compatible) web site you want to login with, for instance:
https://acor-webrtc.rethink2.orange-labs.fr/
Following the login instructions, click on the connect button.
This will open a popup requesting to select an identity. Click on the identity of your choice. The extension will then instantiate an IdP-Proxy to communicate with your IdP. The process may redirect to a page requiring you to authenticate on your IdP.
The extension is merely used to store pointer to registered IdP Proxy. IdP Proxy are specified by WebRTC to allow user-to-user authentication. Once the user select an identity (and thus an IdP Proxy), the extension passes the references to a RTCPeerConnection object (a new WebRTC connection) and call the getIdentityProvider function. Note that the WebRTC connection is not established, we juste reuse the sandboxing implementation.
Then the generated Identity Assertion is returned to the web page requesting authentication. It can then be sent to the server for validation. Our client server implementation uses a Passport Strategy for JWT verification to do that.
https://github.com/reTHINK-project/dev-IdPServer - Compatible Identity Provider
https://github.com/Sparika/ACOR_SDP/ - Compatible client web site requiring authentication
https://github.com/Sparika/passport-jwt - Modified JWT strategy, used by ACOR_SDP
https://www.w3.org/TR/webrtc/#sec.identity-proxy - WebRTC Identity specification