Issue #2010 Support FIPs Key Managers, by only wrapping the default Key Manager if we have wildcard CN's or more than 1 non wild CN. FIPs users will need to install a keystore than has no multiple certificates than can only be resolved by SNI. They will also need to have no certificate aliases. Signed-off-by: Greg Wilkins <gregw@webtide.com>
This commit is contained in:
parent
ce819b5430
commit
8660055574
|
@ -1122,7 +1122,7 @@ public class SslContextFactory extends AbstractLifeCycle implements Dumpable
|
|||
}
|
||||
}
|
||||
|
||||
if (!_certHosts.isEmpty() || !_certWilds.isEmpty())
|
||||
if (!_certWilds.isEmpty() || _certHosts.size()>1)
|
||||
{
|
||||
for (int idx = 0; idx < managers.length; idx++)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue