Skip to content
Snippets Groups Projects
Commit d830a081 authored by Lilith Wittmann's avatar Lilith Wittmann
Browse files

feat(encryption): add e and n parameters to examples for jwks

parent 2b03fd69
No related branches found
No related tags found
No related merge requests found
......@@ -98,6 +98,8 @@ Ein Zustellpunkt benötigt mindestens immer ein erlaubtes Fachdaten-Schema sowie
{
"kty": "RSA",
"key_ops": ["wrapKey"],
"n": "……(Public Key)……",
"e": "AQAB",
"alg": "PS512",
"kid": "……(Key ID)……",
"x5t": "……(Fingerprint)……",
......@@ -110,6 +112,8 @@ Ein Zustellpunkt benötigt mindestens immer ein erlaubtes Fachdaten-Schema sowie
{
"kty": "RSA",
"key_ops": ["verify"],
"n": "……(Public Key)……",
"e": "AQAB",
"alg": "PS512",
"kid": "……(Key ID)……",
"x5t": "……(Fingerprint)……",
......@@ -198,4 +202,4 @@ pfGU_7HxX4d-PLEoDfIRnh32nprarbaIesj9Ppgiu7QciWRApcyszk0a5rzZ7Dk_6-ydMfD92H2p3tdt
OcFhj3XGUshVKec2nRhtCZPOMPTIjxFpozsiRetjZo9LFHzRcvr1eSS_hpteKJ3ltioY9nzt1IX2JqQm
TGtY.VGOCnGM9LEZP5mUO.LQeKj4SKqsUNsBp4ZRN_56QbS8MQ01YTzRVFStk.Z0YMEua9kvCV7LkeJH
kprA
```
```
\ No newline at end of file
......@@ -57,6 +57,8 @@ Das bedeutet, der JSON Web Key zur Verschlüsselung muss diesem Format entsprech
"kty": "RSA",
"key_ops": ["wrapKey"],
"alg": "RSA-OAEP-256",
"n": "……(Public Key)……",
"e": "AQAB",
"kid": "……(Key ID)……",
"x5t": "……(Fingerprint)……",
"x5c": [
......@@ -91,6 +93,8 @@ Das bedeutet, der JSON Web Key zur Prüfung von digitalen Signaturen muss dem fo
"kty": "RSA",
"key_ops": ["verify"],
"alg": "PS512",
"n": "……(Public Key)……",
"e": "AQAB",
"kid": "……(Key ID)……",
"x5t": "……(Fingerprint)……",
"x5c": [
......@@ -143,4 +147,4 @@ Zu Übermittlung der Signatur wird das in [RFC 7515, Abschnitt 7.1](https://tool
| ---- | ------------------ | ------------------------------------------------------------ |
| alg | PS512 | Legt RSASSA-PSS mit SHA512 als Algorithmus für die Signatur fest. Bezeichner gemäß [RFC 7518, Abschnitt 3.5](https://tools.ietf.org/html/rfc7518.html#section-3.5)) |
| kid | *ID des Public Keys* | Die ID des JSON Web Keys mit dem Attribute "verify" aus dem von der Subscriber-API bereitgestellten Keysets, der zur Verifizierung der Signatur dient. Gemäß [RFC7515, Abschnitt 4.1.4](https://tools.ietf.org/html/rfc7515#section-4.1.4). |
| cty | *MIME-Type der Inhaltsdaten* | MIME-Type der Inhaltsdaten (Fachdaten, Medatadaten) nach [RFC 7515, Abschnitt 4.1.10](https://tools.ietf.org/html/rfc7515#section-4.1.10) |
| cty | *MIME-Type der Inhaltsdaten* | MIME-Type der Inhaltsdaten (Fachdaten, Medatadaten) nach [RFC 7515, Abschnitt 4.1.10](https://tools.ietf.org/html/rfc7515#section-4.1.10) |
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment