Home | History | Annotate | Download | only in ssl

Lines Matching refs:protocols

20  * SSL handshake parameters that include protocols, cipher suites, and
27 private String[] protocols;
33 * protocols are initialized to null and client authentication
52 * cipher suites and protocols arrays to be provided. Other values
57 * @param protocols An array of protocol names that is cloned for
61 String[] protocols) {
63 setProtocols(protocols);
87 * Returns a copy of the protocols, or null if none have been
91 if (protocols == null) {
94 return protocols.clone();
98 * Sets the protocols to a copy of the input, or null
100 public void setProtocols(String[] protocols) {
101 this.protocols = ((protocols == null)
103 : protocols.clone());