Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 1. Red Hat Single Sign-On Continuous Delivery 7.3.CD04
1.1. Signature SPI Link kopierenLink in die Zwischenablage kopiert!
The Signature SPI makes it possible to plug-in additional signature algorithms. This enables additional signatures and also enables changing how signatures are generated. For example, using this allows using an HSM device to sign tokens.
Thanks to tnorimat for contributing a signficant part of this work.
1.2. New Signature Algorithms Link kopierenLink in die Zwischenablage kopiert!
Alongside the Signature SPI there is now also support for additional signature algorithms.
Keycloak now has support for RS256, RS384, RS512, ES256, ES384, ES512, HS256, HS384 and HS512.
Elliptic Curve Digital Signature Algorithm (ES256/384/512) are very interesting as they provide similar security properties as RSA signatures, but use significantly less CPU.
HMAC (HS256/384/512) are also very useful when you do not want your application to verify the signature itself. Since these are symmetric signatures only Keycloak is able to verify the signature, which requires the application to use the token introspection endpoint to verify tokens.
Thanks to tnorimat for contributing a signficant part of this work.
1.3. Better Audience Support for OpenID Connect clients Link kopierenLink in die Zwischenablage kopiert!
It is now possible to specify the audiences in the tokens issued for OpenID Connect clients. There is also support for verification of audience on the adapter side.
1.4. Minor improvements Link kopierenLink in die Zwischenablage kopiert!
- Added LocaleSelector SPI, which allows to change the way how the locale will be resolved for a particular request. Thanks to knutz3n
- Added an authenticator to automatically link Identity Provider identity to an existing account after first Idp authentication. Thanks to slominskir
1.5. Upgrade to WildFly 13 Link kopierenLink in die Zwischenablage kopiert!
The Red Hat Single Sign-On server was upgraded to use WildFly 13 under the covers. This means update of the underlying dependencies and also some changes in the configuration. We now also support WildFly 13 adapter and we upgraded the underlying JDG/Infinispan server version for the Cross-DC setup. See Upgrading Guide for more details.
1.6. Authorization Services support in Node.js Link kopierenLink in die Zwischenablage kopiert!
Having authorization services support in Node.js makes it very easy to do fine-grained central authorization with the Node.js adapter.
1.7. Minor improvements Link kopierenLink in die Zwischenablage kopiert!
- Update design for the welcome page
- Allow passing current locale to OAuth2 IdPs. Thanks to knutz3n
- Support Content-Security-Policy-Report-Only security header. Thanks to knutz3n
- Script based ProtocolMapper for SAML. Thanks to AlistairDoswald