com.ibm.crypto.hdwrCCA.provider
Class PBEParameters
- java.lang.Object
-
- java.security.AlgorithmParametersSpi
-
- com.ibm.crypto.hdwrCCA.provider.PBEParameters
-
public final class PBEParameters extends java.security.AlgorithmParametersSpiThis class implements the parameter set used with password-based encryption, which is defined in PKCS#5 as follows:PBEParameter ::= SEQUENCE { salt OCTET STRING SIZE(8), iterationCount INTEGER }
-
-
Constructor Summary
Constructors Constructor and Description PBEParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description protected byte[]engineGetEncoded()protected byte[]engineGetEncoded(java.lang.String encodingMethod)protected java.security.spec.AlgorithmParameterSpecengineGetParameterSpec(java.lang.Class paramSpec)protected voidengineInit(java.security.spec.AlgorithmParameterSpec paramSpec)protected voidengineInit(byte[] encoded)protected voidengineInit(byte[] encoded, java.lang.String decodingMethod)protected java.lang.StringengineToString()
-
-
-
Method Detail
-
engineInit
protected void engineInit(java.security.spec.AlgorithmParameterSpec paramSpec) throws java.security.spec.InvalidParameterSpecException- Specified by:
engineInitin classjava.security.AlgorithmParametersSpi- Throws:
java.security.spec.InvalidParameterSpecException
-
engineInit
protected void engineInit(byte[] encoded) throws java.io.IOException- Specified by:
engineInitin classjava.security.AlgorithmParametersSpi- Throws:
java.io.IOException
-
engineInit
protected void engineInit(byte[] encoded, java.lang.String decodingMethod) throws java.io.IOException- Specified by:
engineInitin classjava.security.AlgorithmParametersSpi- Throws:
java.io.IOException
-
engineGetParameterSpec
protected java.security.spec.AlgorithmParameterSpec engineGetParameterSpec(java.lang.Class paramSpec) throws java.security.spec.InvalidParameterSpecException- Specified by:
engineGetParameterSpecin classjava.security.AlgorithmParametersSpi- Throws:
java.security.spec.InvalidParameterSpecException
-
engineGetEncoded
protected byte[] engineGetEncoded() throws java.io.IOException- Specified by:
engineGetEncodedin classjava.security.AlgorithmParametersSpi- Throws:
java.io.IOException
-
engineGetEncoded
protected byte[] engineGetEncoded(java.lang.String encodingMethod) throws java.io.IOException- Specified by:
engineGetEncodedin classjava.security.AlgorithmParametersSpi- Throws:
java.io.IOException
-
engineToString
protected java.lang.String engineToString()
- Specified by:
engineToStringin classjava.security.AlgorithmParametersSpi
-
-