May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class com.sun.net.ssl.SSLContextSpi
If you want to provide your own definition of the SSL context class, you must provide an implementation of this class and register it with a security provider. That would allow you to use key and trust managers that are not X509 specific.
public abstract class com.sun.net.ssl.SSLContextSpi
extends java.lang.Object {
// Constructors
public SSLContextSpi( );
// Protected Instance Methods
protected abstract SSLServerSocketFactory
engineGetServerSocketFactory( );
protected abstract SSLSocketFactory engineGetSocketFactory( );
protected abstract void engineInit(KeyManager[],
TrustManager[], SecureRandom);
}Read now
Unlock full access