aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/cms/CMSEncryptedGenerator.java
blob: cce7a6d43311594dfe999f5c298e42fc770ade66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.spongycastle.cms;

/**
 * General class for generating a CMS encrypted-data message.
 */
public class CMSEncryptedGenerator
{
    protected CMSAttributeTableGenerator unprotectedAttributeGenerator = null;

    /**
     * base constructor
     */
    protected CMSEncryptedGenerator()
    {
    }

    public void setUnprotectedAttributeGenerator(CMSAttributeTableGenerator unprotectedAttributeGenerator)
    {
        this.unprotectedAttributeGenerator = unprotectedAttributeGenerator;
    }
}