类 AliasKeyManagerFactory

java.lang.Object
javax.net.ssl.KeyManagerFactory
cn.taketoday.core.ssl.AliasKeyManagerFactory

final class AliasKeyManagerFactory extends KeyManagerFactory
KeyManagerFactory that allows a configurable key alias to be used. Due to the fact that the actual calls to retrieve the key by alias are done at request time the approach is to wrap the actual key managers with a AliasKeyManagerFactory.AliasX509ExtendedKeyManager. The actual SPI has to be wrapped as well due to the fact that KeyManagerFactory.getKeyManagers() is final.
从以下版本开始:
4.0
作者:
Scott Frederick, Harry Yang