public class ConcatKDFParams extends KeyDerivationParameters
Modifier and Type | Class and Description |
---|---|
static class |
ConcatKDFParams.Builder
The ConcatKDF key derivation algorithm parameters builder.
|
Modifier | Constructor and Description |
---|---|
protected |
ConcatKDFParams(int keyBitLength,
String digestAlgorithm)
Constructor ConcatKDFParams with specified digest algorithm
|
Modifier and Type | Method and Description |
---|---|
static ConcatKDFParams.Builder |
createBuilder(int keyBitLength,
String digestAlgorithm)
Create a new ConcatKDF key derivation algorithm parameters builder.
|
String |
getAlgorithmID() |
String |
getDigestAlgorithm()
Method return the digest algorithm.
|
String |
getPartyUInfo() |
String |
getPartyVInfo() |
String |
getSuppPrivInfo() |
String |
getSuppPubInfo() |
void |
setAlgorithmID(String algorithmID) |
void |
setDigestAlgorithm(String digestAlgorithm) |
void |
setPartyUInfo(String partyUInfo) |
void |
setPartyVInfo(String partyVInfo) |
void |
setSuppPrivInfo(String suppPrivInfo) |
void |
setSuppPubInfo(String suppPubInfo) |
getAlgorithm, getKeyBitLength, getKeyLength
protected ConcatKDFParams(int keyBitLength, String digestAlgorithm)
keyBitLength
- the length of the derived key in bitsdigestAlgorithm
- the digest algorithm to usepublic String getDigestAlgorithm()
public void setDigestAlgorithm(String digestAlgorithm)
public String getAlgorithmID()
public void setAlgorithmID(String algorithmID)
public String getPartyUInfo()
public void setPartyUInfo(String partyUInfo)
public String getPartyVInfo()
public void setPartyVInfo(String partyVInfo)
public String getSuppPubInfo()
public void setSuppPubInfo(String suppPubInfo)
public String getSuppPrivInfo()
public void setSuppPrivInfo(String suppPrivInfo)
public static ConcatKDFParams.Builder createBuilder(int keyBitLength, String digestAlgorithm)
keyBitLength
- the length of the derived key in bitsdigestAlgorithm
- the digest algorithm to useCopyright © 2000–2024 The Apache Software Foundation. All rights reserved.