Lines Matching defs:AlgorithmParameters

35  * <p>An <code>AlgorithmParameters</code> object for managing the parameters
40 * <p>Once an <code>AlgorithmParameters</code> object is obtained, it must be
45 * <code>AlgorithmParameters</code> object via a call to
50 * following standard <code>AlgorithmParameters</code> algorithms:
59 * "{@docRoot}/../technotes/guides/security/StandardNames.html#AlgorithmParameters">
60 * AlgorithmParameters section</a> of the
75 public class AlgorithmParameters {
90 * Creates an AlgorithmParameters object.
96 protected AlgorithmParameters(AlgorithmParametersSpi paramSpi,
118 * A new AlgorithmParameters object encapsulating the
130 * See the AlgorithmParameters section in the <a href=
131 * "{@docRoot}/../technotes/guides/security/StandardNames.html#AlgorithmParameters">
143 public static AlgorithmParameters getInstance(String algorithm)
146 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
148 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
159 * <p> A new AlgorithmParameters object encapsulating the
172 * See the AlgorithmParameters section in the <a href=
173 * "{@docRoot}/../technotes/guides/security/StandardNames.html#AlgorithmParameters">
193 public static AlgorithmParameters getInstance(String algorithm,
199 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
201 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
209 * <p> A new AlgorithmParameters object encapsulating the
219 * See the AlgorithmParameters section in the <a href=
220 * "{@docRoot}/../technotes/guides/security/StandardNames.html#AlgorithmParameters">
238 public static AlgorithmParameters getInstance(String algorithm,
244 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
246 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],