org.spongycastle.dvcs.CCPDRequestData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkix Show documentation
Show all versions of pkix Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.dvcs;
import org.spongycastle.asn1.dvcs.Data;
/**
* Data piece of DVCRequest for CCPD service (Certify Claim of Possession of Data).
* It contains CCPD-specific selector interface.
*
* This objects are constructed internally,
* to build DVCS request to CCPD service use CCPDRequestBuilder.
*
*/
public class CCPDRequestData
extends DVCSRequestData
{
/**
* Construct from corresponding ASN.1 Data structure.
* Note, that data should have messageImprint choice,
* otherwise DVCSConstructionException is thrown.
*
* @param data
* @throws DVCSConstructionException
*/
CCPDRequestData(Data data)
throws DVCSConstructionException
{
super(data);
initDigest();
}
private void initDigest()
throws DVCSConstructionException
{
if (data.getMessageImprint() == null)
{
throw new DVCSConstructionException("DVCSRequest.data.messageImprint should be specified for CCPD service");
}
}
/**
* Get MessageImprint value
*
* @return the message imprint data as a MessageImprint object.
*/
public MessageImprint getMessageImprint()
{
return new MessageImprint(data.getMessageImprint());
}
}