aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/dvcs/CCPDRequestData.java
blob: 202dd774a2c0959db905690e08bf083b00e25a7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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.
 * <p/>
 * 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
     */
    public MessageImprint getMessageImprint()
    {
        return new MessageImprint(data.getMessageImprint());
    }
}