⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x509crlparser.java

📁 kmlnjlkj nlkjlkjkljl okopokipoipo oipipipo i
💻 JAVA
字号:
package org.bouncycastle.jce.provider;import org.bouncycastle.asn1.ASN1InputStream;import org.bouncycastle.asn1.ASN1Sequence;import org.bouncycastle.asn1.ASN1Set;import org.bouncycastle.asn1.ASN1TaggedObject;import org.bouncycastle.asn1.DERObjectIdentifier;import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;import org.bouncycastle.asn1.pkcs.SignedData;import org.bouncycastle.asn1.x509.CertificateList;import org.bouncycastle.x509.X509StreamParserSpi;import org.bouncycastle.x509.util.StreamParsingException;import java.io.BufferedInputStream;import java.io.IOException;import java.io.InputStream;import java.security.cert.CRL;import java.security.cert.CRLException;import java.util.ArrayList;import java.util.Collection;import java.util.List;public class X509CRLParser    extends X509StreamParserSpi{    private static final PEMUtil PEM_PARSER = new PEMUtil("CRL");    private ASN1Set     sData = null;    private int         sDataObjectCount = 0;    private InputStream currentStream = null;    private CRL readDERCRL(        InputStream in)        throws IOException, CRLException    {        ASN1InputStream dIn = new ASN1InputStream(in, ProviderUtil.getReadLimit(in));        ASN1Sequence seq = (ASN1Sequence)dIn.readObject();        if (seq.size() > 1                && seq.getObjectAt(0) instanceof DERObjectIdentifier)        {            if (seq.getObjectAt(0).equals(PKCSObjectIdentifiers.signedData))            {                sData = new SignedData(ASN1Sequence.getInstance(                                (ASN1TaggedObject)seq.getObjectAt(1), true)).getCRLs();                return getCRL();            }        }        return new X509CRLObject(CertificateList.getInstance(seq));    }    private CRL getCRL()        throws CRLException    {        if (sData == null || sDataObjectCount >= sData.size())        {            return null;        }        return new X509CRLObject(                        CertificateList.getInstance(                                sData.getObjectAt(sDataObjectCount++)));    }    private CRL readPEMCRL(        InputStream  in)        throws IOException, CRLException    {        ASN1Sequence seq = PEM_PARSER.readPEMObject(in);        if (seq != null)        {            return new X509CRLObject(CertificateList.getInstance(seq));        }        return null;    }    public void engineInit(InputStream in)    {        currentStream = in;        sData = null;        sDataObjectCount = 0;        if (!currentStream.markSupported())        {            currentStream = new BufferedInputStream(currentStream);        }    }    public Object engineRead()        throws StreamParsingException    {        try        {            if (sData != null)            {                if (sDataObjectCount != sData.size())                {                    return getCRL();                }                else                {                    sData = null;                    sDataObjectCount = 0;                    return null;                }            }            currentStream.mark(10);            int    tag = currentStream.read();            if (tag == -1)            {                return null;            }            if (tag != 0x30)  // assume ascii PEM encoded.            {                currentStream.reset();                return readPEMCRL(currentStream);            }            else            {                currentStream.reset();                return readDERCRL(currentStream);            }        }        catch (Exception e)        {            throw new StreamParsingException(e.toString(), e);        }    }    public Collection engineReadAll()        throws StreamParsingException    {        CRL     crl;        List certs = new ArrayList();        while ((crl = (CRL)engineRead()) != null)        {            certs.add(crl);        }        return certs;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -