Home | History | Annotate | Download | only in ssl

Lines Matching defs:algorithm

43  *       <th>Algorithm</th>
65 // The name of the trust management algorithm.
66 private String algorithm;
69 * Obtains the default TrustManagerFactory algorithm name.
72 * the value of the {@code ssl.TrustManagerFactory.algorithm}
73 * security property to the desired algorithm name.
76 * @return the default algorithm name as specified by the
77 * {@code ssl.TrustManagerFactory.algorithm} security property, or an
86 "ssl.TrustManagerFactory.algorithm");
100 * @param algorithm the algorithm
103 Provider provider, String algorithm) {
106 this.algorithm = algorithm;
110 * Returns the algorithm name of this <code>TrustManagerFactory</code>
117 * @return the algorithm name of this <code>TrustManagerFactory</code>
121 return this.algorithm;
132 * Provider that supports the specified algorithm is returned.
137 * @param algorithm the standard name of the requested trust management
138 * algorithm. See the <a href=
141 * for information about standard algorithm names.
147 * specified algorithm.
148 * @exception NullPointerException if algorithm is null.
152 public static final TrustManagerFactory getInstance(String algorithm)
156 algorithm);
158 instance.provider, algorithm);
173 * @param algorithm the standard name of the requested trust management
174 * algorithm. See the <a href=
177 * for information about standard algorithm names.
184 * implementation for the specified algorithm is not
191 * @throws NullPointerException if algorithm is null.
195 public static final TrustManagerFactory getInstance(String algorithm,
200 algorithm, provider);
202 instance.provider, algorithm);
214 * @param algorithm the standard name of the requested trust management
215 * algorithm. See the <a href=
218 * for information about standard algorithm names.
225 * implementation for the specified algorithm is not available
229 * @throws NullPointerException if algorithm is null.
233 public static final TrustManagerFactory getInstance(String algorithm,
237 algorithm, provider);
239 instance.provider, algorithm);