Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 713 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 713 Bytes

SSI Service Provider IRMA server

This repo contains all configuration and files necessary to run the IRMA validation server for the SSI Service Provider.

Configuration

For configuring the IRMA server, see the IRMA docs.

Settings can be changed by modifying the irmaserver.json file or by setting IRMASERVER_<SETTING_NAME> environment variable, for instance through docker-compose.yml.

Generating a key-pair for RS256

You can generate a key-pair for use in the jwt RS256 algorithm with the following commands:

ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub