Package java.security
Class AlgorithmParameters
- java.lang.Object
-
- java.security.AlgorithmParameters
-
public class AlgorithmParameters extends Object
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAlgorithmParameters(AlgorithmParametersSpi var0, Provider var1, String var2)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAlgorithm()byte[]getEncoded()byte[]getEncoded(String var0)static AlgorithmParametersgetInstance(String var0)static AlgorithmParametersgetInstance(String var0, String var1)AlgorithmParameterSpecgetParameterSpec(Class var0)ProvidergetProvider()voidinit(byte[] var0)voidinit(byte[] var0, String var1)voidinit(AlgorithmParameterSpec var0)StringtoString()
-
-
-
Constructor Detail
-
AlgorithmParameters
protected AlgorithmParameters(AlgorithmParametersSpi var0, Provider var1, String var2)
-
-
Method Detail
-
getAlgorithm
public final String getAlgorithm()
-
getEncoded
public final byte[] getEncoded() throws IOException- Throws:
IOException
-
getEncoded
public final byte[] getEncoded(String var0) throws IOException
- Throws:
IOException
-
getInstance
public static AlgorithmParameters getInstance(String var0) throws NoSuchAlgorithmException
- Throws:
NoSuchAlgorithmException
-
getInstance
public static AlgorithmParameters getInstance(String var0, String var1) throws NoSuchAlgorithmException, NoSuchProviderException
-
getParameterSpec
public final AlgorithmParameterSpec getParameterSpec(Class var0) throws InvalidParameterSpecException
- Throws:
InvalidParameterSpecException
-
getProvider
public final Provider getProvider()
-
init
public final void init(byte[] var0) throws IOException- Throws:
IOException
-
init
public final void init(byte[] var0, String var1) throws IOException- Throws:
IOException
-
init
public final void init(AlgorithmParameterSpec var0) throws InvalidParameterSpecException
- Throws:
InvalidParameterSpecException
-
-