blob: 277a2b5e7352bea48e036fc1a1ee5195473e9ff7 [file] [log] [blame]
package org.bouncycastle.est.jcajce;
import javax.net.ssl.SSLSocketFactory;
/**
* Implementations provide SSL socket factories.
*/
public interface SSLSocketFactoryCreator
{
SSLSocketFactory createFactory()
throws Exception;
boolean isTrusted();
}