<snip>
public class ZZLSocketFactory implements LayeredSocketFactory{
public ZZLSocketFactory(){
try{
SSLContext c = SSLContext.getInstance("SSL");
c.init(null, new TrustManager[] { new Z509TrustMgr() }, null);
sf = c.getSocketFactory();
}catch (Exception e){
throw new RuntimeException(e.toString());
}
}
</snip>
the getInstance method is throwing a NoSuchAlgorithmException with the
message as stated above. I've been going over the android docs and it
seems on the surface it should be supported or did i miss anything?