01: package org.bouncycastle.asn1.cms;
02:
03: import org.bouncycastle.asn1.DERObjectIdentifier;
04: import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
05:
06: public interface CMSObjectIdentifiers {
07: static final DERObjectIdentifier data = PKCSObjectIdentifiers.data;
08: static final DERObjectIdentifier signedData = PKCSObjectIdentifiers.signedData;
09: static final DERObjectIdentifier envelopedData = PKCSObjectIdentifiers.envelopedData;
10: static final DERObjectIdentifier signedAndEnvelopedData = PKCSObjectIdentifiers.signedAndEnvelopedData;
11: static final DERObjectIdentifier digestedData = PKCSObjectIdentifiers.digestedData;
12: static final DERObjectIdentifier encryptedData = PKCSObjectIdentifiers.encryptedData;
13: static final DERObjectIdentifier compressedData = PKCSObjectIdentifiers.id_ct_compressedData;
14: }
|