Class AlgorithmParametersSpi
- java.lang.Object
-
- java.security.AlgorithmParametersSpi
-
- org.bouncycastle.jcajce.provider.asymmetric.ec.AlgorithmParametersSpi
-
public class AlgorithmParametersSpi extends AlgorithmParametersSpi
-
-
Constructor Summary
Constructors Constructor Description AlgorithmParametersSpi()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected byte[]
engineGetEncoded()
protected byte[]
engineGetEncoded(String format)
protected <T extends AlgorithmParameterSpec>
TengineGetParameterSpec(Class<T> paramSpec)
protected void
engineInit(byte[] bytes)
protected void
engineInit(byte[] bytes, String format)
protected void
engineInit(AlgorithmParameterSpec algorithmParameterSpec)
protected String
engineToString()
protected boolean
isASN1FormatString(String format)
-
-
-
Method Detail
-
isASN1FormatString
protected boolean isASN1FormatString(String format)
-
engineInit
protected void engineInit(AlgorithmParameterSpec algorithmParameterSpec) throws InvalidParameterSpecException
- Specified by:
engineInit
in classAlgorithmParametersSpi
- Throws:
InvalidParameterSpecException
-
engineInit
protected void engineInit(byte[] bytes) throws IOException
- Specified by:
engineInit
in classAlgorithmParametersSpi
- Throws:
IOException
-
engineInit
protected void engineInit(byte[] bytes, String format) throws IOException
- Specified by:
engineInit
in classAlgorithmParametersSpi
- Throws:
IOException
-
engineGetParameterSpec
protected <T extends AlgorithmParameterSpec> T engineGetParameterSpec(Class<T> paramSpec) throws InvalidParameterSpecException
- Specified by:
engineGetParameterSpec
in classAlgorithmParametersSpi
- Throws:
InvalidParameterSpecException
-
engineGetEncoded
protected byte[] engineGetEncoded() throws IOException
- Specified by:
engineGetEncoded
in classAlgorithmParametersSpi
- Throws:
IOException
-
engineGetEncoded
protected byte[] engineGetEncoded(String format) throws IOException
- Specified by:
engineGetEncoded
in classAlgorithmParametersSpi
- Throws:
IOException
-
engineToString
protected String engineToString()
- Specified by:
engineToString
in classAlgorithmParametersSpi
-
-