Home | History | Annotate | Download | only in ssl

Lines Matching refs:sf

42         SocketFactory sf = SSLSocketFactory.getDefault();
43 assertNotNull(sf);
44 assertTrue(SSLSocketFactory.class.isAssignableFrom(sf.getClass()));
55 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault();
56 assertNotSame(sf.getDefaultCipherSuites(), sf.getDefaultCipherSuites());
61 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault();
62 assertNotSame(sf.getSupportedCipherSuites(), sf.getSupportedCipherSuites());
68 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault();
69 sf.createSocket(null, null, -1, false);
76 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault();
77 sf.createSocket(new Socket(), null, -1, false);
88 SSLSocketFactory sf = (SSLSocketFactory) SSLSocketFactory.getDefault();
89 Socket ssl = sf.createSocket(s, null, -1, false);