当前位置: 首页>>代码示例>>Java>>正文


Java CMSException.getUnderlyingException方法代码示例

本文整理汇总了Java中org.bouncycastle.cms.CMSException.getUnderlyingException方法的典型用法代码示例。如果您正苦于以下问题:Java CMSException.getUnderlyingException方法的具体用法?Java CMSException.getUnderlyingException怎么用?Java CMSException.getUnderlyingException使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.bouncycastle.cms.CMSException的用法示例。


在下文中一共展示了CMSException.getUnderlyingException方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isSignatureValid

import org.bouncycastle.cms.CMSException; //导入方法依赖的package包/类
/**
 * Return true if the signature on time stamp token is valid.
 * <p>
 * Note: this is a much weaker proof of correctness than calling validate().
 * </p>
 *
 * @param sigVerifier the content verifier create the objects required to verify the CMS object in the timestamp.
 * @return true if the signature matches, false otherwise.
 * @throws TSPException if the signature cannot be processed or the provider cannot match the algorithm.
 */
public boolean isSignatureValid(
    SignerInformationVerifier sigVerifier)
    throws TSPException
{
    try
    {
        return tsaSignerInfo.verify(sigVerifier);
    }
    catch (CMSException e)
    {
        if (e.getUnderlyingException() != null)
        {
            throw new TSPException(e.getMessage(), e.getUnderlyingException());
        }
        else
        {
            throw new TSPException("CMS exception: " + e, e);
        }
    }
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:31,代码来源:TimeStampToken.java

示例2: TimeStampToken

import org.bouncycastle.cms.CMSException; //导入方法依赖的package包/类
public TimeStampToken(CMSSignedData signedData)
    throws TSPException, IOException
{
    this.tsToken = signedData;

    if (!this.tsToken.getSignedContentTypeOID().equals(PKCSObjectIdentifiers.id_ct_TSTInfo.getId()))
    {
        throw new TSPValidationException("ContentInfo object not for a time stamp.");
    }
    
    Collection signers = tsToken.getSignerInfos().getSigners();

    if (signers.size() != 1)
    {
        throw new IllegalArgumentException("Time-stamp token signed by "
                + signers.size()
                + " signers, but it must contain just the TSA signature.");
    }

    tsaSignerInfo = (SignerInformation)signers.iterator().next();

    try
    {
        CMSProcessable content = tsToken.getSignedContent();
        ByteArrayOutputStream bOut = new ByteArrayOutputStream();

        content.write(bOut);

        ASN1InputStream aIn = new ASN1InputStream(new ByteArrayInputStream(bOut.toByteArray()));

        this.tstInfo = new TimeStampTokenInfo(TSTInfo.getInstance(aIn.readObject()));
        
        Attribute   attr = tsaSignerInfo.getSignedAttributes().get(PKCSObjectIdentifiers.id_aa_signingCertificate);

        if (attr != null)
        {
            SigningCertificate    signCert = SigningCertificate.getInstance(attr.getAttrValues().getObjectAt(0));

            this.certID = new CertID(ESSCertID.getInstance(signCert.getCerts()[0]));
        }
        else
        {
            attr = tsaSignerInfo.getSignedAttributes().get(PKCSObjectIdentifiers.id_aa_signingCertificateV2);

            if (attr == null)
            {
                throw new TSPValidationException("no signing certificate attribute found, time stamp invalid.");
            }

            SigningCertificateV2 signCertV2 = SigningCertificateV2.getInstance(attr.getAttrValues().getObjectAt(0));

            this.certID = new CertID(ESSCertIDv2.getInstance(signCertV2.getCerts()[0]));
        }
    }
    catch (CMSException e)
    {
        throw new TSPException(e.getMessage(), e.getUnderlyingException());
    }
}
 
开发者ID:Appdome,项目名称:ipack,代码行数:60,代码来源:TimeStampToken.java


注:本文中的org.bouncycastle.cms.CMSException.getUnderlyingException方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。