Home | History | Annotate | Download | only in ssl

Lines Matching defs:algorithm

43  *       <th>Algorithm</th>
65 // The name of the key management algorithm.
66 private String algorithm;
69 * Obtains the default KeyManagerFactory algorithm name.
71 * <p>The default algorithm can be changed at runtime by setting
72 * the value of the {@code ssl.KeyManagerFactory.algorithm}
73 * security property to the desired algorithm name.
76 * @return the default algorithm name as specified by the
77 * {@code ssl.KeyManagerFactory.algorithm} security property, or an
86 "ssl.KeyManagerFactory.algorithm");
100 * @param algorithm the algorithm
103 Provider provider, String algorithm) {
106 this.algorithm = algorithm;
110 * Returns the algorithm name of this <code>KeyManagerFactory</code> object.
116 * @return the algorithm name of this <code>KeyManagerFactory</code> object.
119 return this.algorithm;
130 * Provider that supports the specified algorithm is returned.
135 * @param algorithm the standard name of the requested algorithm.
139 * for information about standard algorithm names.
145 * specified algorithm.
146 * @exception NullPointerException if <code>algorithm</code> is null.
150 public static final KeyManagerFactory getInstance(String algorithm)
154 algorithm);
156 instance.provider, algorithm);
171 * @param algorithm the standard name of the requested algorithm.
175 * for information about standard algorithm names.
182 * implementation for the specified algorithm is not
189 * @throws NullPointerException if <code>algorithm</code> is null.
193 public static final KeyManagerFactory getInstance(String algorithm,
198 algorithm, provider);
200 instance.provider, algorithm);
212 * @param algorithm the standard name of the requested algorithm.
216 * for information about standard algorithm names.
223 * implementation for the specified algorithm is not available
227 * @throws NullPointerException if <code>algorithm</code> is null.
231 public static final KeyManagerFactory getInstance(String algorithm,
235 algorithm, provider);
237 instance.provider, algorithm);
264 * @throws NoSuchAlgorithmException if the specified algorithm is not