Class ECDHKEKGenerator
- java.lang.Object
-
- org.bouncycastle.crypto.agreement.kdf.ECDHKEKGenerator
-
- All Implemented Interfaces:
DerivationFunction
,DigestDerivationFunction
public class ECDHKEKGenerator extends java.lang.Object implements DigestDerivationFunction
X9.63 based key derivation function for ECDH CMS.
-
-
Constructor Summary
Constructors Constructor Description ECDHKEKGenerator(Digest digest)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
generateBytes(byte[] out, int outOff, int len)
Digest
getDigest()
return the message digest used as the basis for the functionvoid
init(DerivationParameters param)
-
-
-
Constructor Detail
-
ECDHKEKGenerator
public ECDHKEKGenerator(Digest digest)
-
-
Method Detail
-
init
public void init(DerivationParameters param)
- Specified by:
init
in interfaceDerivationFunction
-
getDigest
public Digest getDigest()
Description copied from interface:DigestDerivationFunction
return the message digest used as the basis for the function- Specified by:
getDigest
in interfaceDigestDerivationFunction
-
generateBytes
public int generateBytes(byte[] out, int outOff, int len) throws DataLengthException, java.lang.IllegalArgumentException
- Specified by:
generateBytes
in interfaceDerivationFunction
- Throws:
DataLengthException
java.lang.IllegalArgumentException
-
-