Home | History | Annotate | Download | only in crypto

Lines Matching defs:SecretKeyFactory

31  * The public API for {@code SecretKeyFactory} implementations.
42 public class SecretKeyFactory {
45 private static final Engine ENGINE = new Engine("SecretKeyFactory");
57 * Creates a new {@code SecretKeyFactory}
66 protected SecretKeyFactory(SecretKeyFactorySpi keyFacSpi,
83 * Returns the provider for this {@code SecretKeyFactory} instance.
85 * @return the provider for this {@code SecretKeyFactory} instance.
92 * Creates a new {@code SecretKeyFactory} instance for the specified key
103 public static final SecretKeyFactory getInstance(String algorithm)
109 return new SecretKeyFactory((SecretKeyFactorySpi) sap.spi, sap.provider, algorithm);
113 * Creates a new {@code SecretKeyFactory} instance for the specified key
131 public static final SecretKeyFactory getInstance(String algorithm,
145 * Creates a new {@code SecretKeyFactory} instance for the specified key
162 public static final SecretKeyFactory getInstance(String algorithm,
171 return new SecretKeyFactory((SecretKeyFactorySpi) spi, provider, algorithm);