Lines Matching defs:AlgorithmParameters

37  * <p>An {@code AlgorithmParameters} object for managing the parameters
42 * <p>Once an {@code AlgorithmParameters} object is obtained, it must be
47 * {@code AlgorithmParameters} object via a call to
51 * <p> Android provides the following <code>AlgorithmParameters</code> algorithms:
156 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html#AlgorithmParameters">
157 * AlgorithmParameters section</a> of the
170 public class AlgorithmParameters {
185 * Creates an AlgorithmParameters object.
191 protected AlgorithmParameters(AlgorithmParametersSpi paramSpi,
213 * A new AlgorithmParameters object encapsulating the
225 * See the AlgorithmParameters section in the <a href=
226 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html#AlgorithmParameters">
238 public static AlgorithmParameters getInstance(String algorithm)
241 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
243 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
254 * <p> A new AlgorithmParameters object encapsulating the
267 * See the AlgorithmParameters section in the <a href=
268 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html#AlgorithmParameters">
288 public static AlgorithmParameters getInstance(String algorithm,
295 Providers.checkBouncyCastleDeprecation(provider, "AlgorithmParameters", algorithm);
296 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
298 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
306 * <p> A new AlgorithmParameters object encapsulating the
316 * See the AlgorithmParameters section in the <a href=
317 * "{@docRoot}openjdk-redirect.html?v=8&path=/technotes/guides/security/StandardNames.html#AlgorithmParameters">
335 public static AlgorithmParameters getInstance(String algorithm,
342 Providers.checkBouncyCastleDeprecation(provider, "AlgorithmParameters", algorithm);
343 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
345 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],