Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:protocols

36  * about enabled cipher suites and protocols,
71 // protocols available for SSL connection
245 * @return the set of enabled protocols
252 * Sets the set of available protocols for use in SSL connection.
253 * @param protocols String[]
255 protected void setEnabledProtocols(String[] protocols) {
256 if (protocols == null) {
257 throw new IllegalArgumentException("protocols == null");
259 for (int i=0; i<protocols.length; i++) {
260 String protocol = protocols[i];
262 throw new IllegalArgumentException("protocols[" + i + "] == null");
268 enabledProtocols = protocols;