Home | History | Annotate | Download | only in security

Lines Matching defs:algorithm

38  * for a particular algorithm can be obtained by
55 * <th>Algorithm</th>
158 * Java Cryptography Architecture Standard Algorithm Name Documentation.
178 // The algorithm
179 private String algorithm;
189 * @param algorithm the algorithm
192 Provider provider, String algorithm)
196 this.algorithm = algorithm;
200 * Returns the name of the algorithm associated with this parameter object.
202 * @return the algorithm name.
205 return this.algorithm;
209 * Returns a parameter object for the specified algorithm.
215 * Provider that supports the specified algorithm is returned.
224 * @param algorithm the name of the algorithm requested.
227 * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
228 * for information about standard algorithm names.
234 * specified algorithm.
238 public static AlgorithmParameters getInstance(String algorithm)
241 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
245 algorithm);
247 throw new NoSuchAlgorithmException(algorithm + " not found");
252 * Returns a parameter object for the specified algorithm.
266 * @param algorithm the name of the algorithm requested.
269 * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
270 * for information about standard algorithm names.
277 * implementation for the specified algorithm is not
288 public static AlgorithmParameters getInstance(String algorithm,
295 Providers.checkBouncyCastleDeprecation(provider, "AlgorithmParameters", algorithm);
296 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
300 algorithm);
304 * Returns a parameter object for the specified algorithm.
315 * @param algorithm the name of the algorithm requested.
318 * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
319 * for information about standard algorithm names.
326 * implementation for the specified algorithm is not available
335 public static AlgorithmParameters getInstance(String algorithm,
342 Providers.checkBouncyCastleDeprecation(provider, "AlgorithmParameters", algorithm);
343 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
347 algorithm);