JWE Decrypters

The following table lists all JWE Decrypters declared as services in your application configuration or using the Configuration Helper.
Decrypters directly created through the JWE Decrypter Factory cannot be listed.

{% if not collector.getData().jwe.jwe_decrypters is empty %} {% for id, data in collector.getData().jwe.jwe_decrypters %} {% endfor %} {% else %} {% endif %}
Service ID Key Encryption Algorithms Content Encryption Algorithms Compression Methods
{{ id }}
    {% for algorithm in data.key_encryption_algorithms %}
  • {{ algorithm }}
  • {% endfor %}
    {% for algorithm in data.content_encryption_algorithms %}
  • {{ algorithm }}
  • {% endfor %}
    {% for method in data.compression_methods %}
  • {{ method }}
  • {% endfor %}
There is no JWE Decrypter

Decrypted Tokens

The following tables list all tokens decrypted (or not) by the JWE Decrypters.
Failure reason is related to the key(s) used.

{% for event in collector.getData().jwe.events.decryption_success %} {% endfor %} {% for event in collector.getData().jwe.events.decryption_failure %} {% endfor %}
Status JWE Key set Recipient index / Exception Key used for decryption
Success {{ profiler_dump(event.seek("jwe")) }} {{ profiler_dump(event.seek("JWKSet")) }} {{ event.recipient }} {{ profiler_dump(event.seek("JWK")) }}
Failure {{ profiler_dump(event.seek("jwe")) }} {{ profiler_dump(event.seek("JWKSet")) }} --- ---