Skip to content

Commit

Permalink
Add information on keypairs
Browse files Browse the repository at this point in the history
  • Loading branch information
phavekes authored Jan 9, 2024
1 parent 23d31a2 commit f8218aa
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,16 @@ To become an institution admin in invite, add the following values as `eduPerson
### [Technical documentation](#technical-documentation)

<https://openconext.github.io/OpenConext-Invite/>

### Provisioning Secrets
The secrets (passwords / API-keys) used in provisionings are encrypted in OpenConext-Manage using keypairs.

#### Create private / public keypair
```
openssl genrsa -traditional -out private_key.pem 2048
openssl rsa -pubout -in private_key.pem -out public_key.pem
```
#### Convert private key to pkcs8 format in order to import it from Java
```
openssl pkcs8 -topk8 -in private_key.pem -inform pem -out private_key_pkcs8.pem -outform pem -nocrypt
```

0 comments on commit f8218aa

Please sign in to comment.