Home | History | Annotate | Download | only in crypto

Lines Matching defs:algorithm

65  *       <th>Algorithm</th>
256 * Java Cryptography Architecture Standard Algorithm Name Documentation.
272 // The algorithm associated with this factory
273 private final String algorithm;
290 * @param algorithm the secret-key algorithm
293 Provider provider, String algorithm) {
296 this.algorithm = algorithm;
299 private SecretKeyFactory(String algorithm) throws NoSuchAlgorithmException {
300 this.algorithm = algorithm;
302 GetInstance.getServices("SecretKeyFactory", algorithm);
307 (algorithm + " SecretKeyFactory not available");
313 * secret keys of the specified algorithm.
319 * Provider that supports the specified algorithm is returned.
324 * @param algorithm the standard name of the requested secret-key
325 * algorithm.
328 * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
329 * for information about standard algorithm names.
333 * @exception NullPointerException if the specified algorithm
338 * specified algorithm.
342 public static final SecretKeyFactory getInstance(String algorithm)
344 return new SecretKeyFactory(algorithm);
349 * secret keys of the specified algorithm.
359 * @param algorithm the standard name of the requested secret-key
360 * algorithm.
363 * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
364 * for information about standard algorithm names.
371 * implementation for the specified algorithm is not
374 * @exception NullPointerException if the specified algorithm
385 public static final SecretKeyFactory getInstance(String algorithm,
389 Providers.checkBouncyCastleDeprecation(provider, "SecretKeyFactory", algorithm);
391 SecretKeyFactorySpi.class, algorithm, provider);
393 instance.provider, algorithm);
398 * secret keys of the specified algorithm.
405 * @param algorithm the standard name of the requested secret-key
406 * algorithm.
409 * Java Cryptography Architecture Standard Algorithm Name Documentation</a>
410 * for information about standard algorithm names.
416 * @exception NullPointerException if the specified algorithm
420 * implementation for the specified algorithm is not available
428 public static final SecretKeyFactory getInstance(String algorithm,
431 Providers.checkBouncyCastleDeprecation(provider, "SecretKeyFactory", algorithm);
433 SecretKeyFactorySpi.class, algorithm, provider);
435 instance.provider, algorithm);
452 * Returns the algorithm name of this <code>SecretKeyFactory</code> object.
458 * @return the algorithm name of this <code>SecretKeyFactory</code>
462 return this.algorithm;
556 * (e.g., the given key has an algorithm or format not supported by this