Go to file
akrherz 83b6f48e5d march toward 0.0.3-SNAPSHOT 2023-11-20 21:31:45 +00:00
.github/workflows Update workflow file 2023-05-03 20:47:00 +01:00
classes first release 2019-09-12 23:09:02 +01:00
src Minor admin console page improvements (labels, mostly). 2020-06-09 17:02:08 +02:00
.gitignore remove stray * ignore 2021-02-21 05:48:15 -06:00
LICENSE first release 2019-09-12 23:09:02 +01:00
README.md add badges 2021-02-21 05:49:03 -06:00
changelog.html march toward 0.0.3-SNAPSHOT 2023-11-20 21:31:45 +00:00
logo_large.gif first release 2019-09-12 23:09:02 +01:00
logo_small.gif first release 2019-09-12 23:09:02 +01:00
plugin.xml Denote IRMAServer Plugin 0.0.2 Release 2023-11-20 21:31:45 +00:00
pom.xml march toward 0.0.3-SNAPSHOT 2023-11-20 21:31:45 +00:00
readme.html first release 2019-09-12 23:09:02 +01:00

README.md

IRMA Plugin for openfire

I Reveal My Attributes to Openfire

IRMA is the unique platform that makes you digitally self-sovereign and gives you full control over your personal data: with IRMA on your phone you are empowered not only to prove who you are, but also to digitally sign statements. See https://privacybydesign.foundation/en/

This plugin does the following:

  • Embeds irmago the IRMA server, client, and tooling component
  • Exposes irmago web services from openfire using a reverse proxy. Endpoint by default is https://your_server:7443/irmaproxy
  • Provides an Admin UI in Openfire to configure irmago settings
  • Provides a demo web page to test your setup. Go to https://your_server:7443/irmaproxy
  • Controls the irmago binary process, starting and stopping the Linux/Windows image.

How to use

Include irmajs in your web app and do something like this to request a web site visitor to reveal their verified mobile phone number as IRMA attribute

const request = {
  '@context': 'https://irma.app/ld/request/disclosure/v2',
  'disclose': [
    [
      [ 'pbdf.pbdf.mobilenumber.mobilenumber' ]
    ]
  ]
};

irma.startSession("https://your_server:7443/irmaproxy", request)
    .then(({ sessionPtr, token }) => irma.handleSession(sessionPtr, {server, token}))
    .then(result => console.log('Done', result));

TODO

Enable admin UI to edit all the irmago server config settings.

CI Build Status

Build Status

Reporting Issues

Issues may be reported to the forums or via this repo's Github Issues.