]
Tristan Tarrant updated ISPN-12113:
-----------------------------------
Fix Version/s: 12.1.0.Final
(was: 12.0.0.Final)
HTTP authentication with only Digest SHA mechanisms fails
---------------------------------------------------------
Key: ISPN-12113
URL:
https://issues.redhat.com/browse/ISPN-12113
Project: Infinispan
Issue Type: Bug
Reporter: Francisco De Melo Junior
Assignee: Francisco De Melo Junior
Priority: Minor
Labels: authentication, encryption, rest
Fix For: 12.1.0.Final
{code:xml}
<cache-container name="clustered" default-cache="sessionCache"
statistics="true">
<transport stack="tcp-stack" site="z9"
cluster="clustered" node-name="rhdgserver" />
<security>
<authorization>
<identity-role-mapper />
<role name="admin" permissions="ALL" />
<role name="reader" permissions="READ" />
<role name="writer" permissions="WRITE" />
</authorization>
</security>
<metrics gauges="true" histograms="true" />
</cache-container>
(...)
<endpoints socket-binding="default"
security-realm="default">
<hotrod-connector name="hotrod">
<authentication>
<sasl server-name="rhdgserver"
mechanisms="DIGEST-SHA-256" qop="auth" />
</authentication>
</hotrod-connector>
<rest-connector name="rest">
<authentication mechanisms="DIGEST-SHA-256"/>
</rest-connector>
</endpoints>
{code}