CMSObjectIdentifiers.java
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:1k
源码类别:

CA认证

开发平台:

Java

  1. package org.bouncycastle.asn1.cms;
  2. import org.bouncycastle.asn1.DERObjectIdentifier;
  3. import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
  4. public interface CMSObjectIdentifiers
  5. {
  6.     static final DERObjectIdentifier    data = PKCSObjectIdentifiers.data;
  7.     static final DERObjectIdentifier    signedData = PKCSObjectIdentifiers.signedData;
  8.     static final DERObjectIdentifier    envelopedData = PKCSObjectIdentifiers.envelopedData;
  9.     static final DERObjectIdentifier    signedAndEnvelopedData = PKCSObjectIdentifiers.signedAndEnvelopedData;
  10.     static final DERObjectIdentifier    digestedData = PKCSObjectIdentifiers.digestedData;
  11.     static final DERObjectIdentifier    encryptedData = PKCSObjectIdentifiers.encryptedData;
  12.     static final DERObjectIdentifier    compressedData = PKCSObjectIdentifiers.id_ct_compressedData;
  13. }