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

📄 protectedpart.java

📁 kmlnjlkj nlkjlkjkljl okopokipoipo oipipipo i
💻 JAVA
字号:
package org.bouncycastle.asn1.cmp;import org.bouncycastle.asn1.ASN1Encodable;import org.bouncycastle.asn1.ASN1EncodableVector;import org.bouncycastle.asn1.ASN1Sequence;import org.bouncycastle.asn1.DERObject;import org.bouncycastle.asn1.DERSequence;public class ProtectedPart    extends ASN1Encodable{    private PKIHeader header;    private PKIBody body;    private ProtectedPart(ASN1Sequence seq)    {        header = PKIHeader.getInstance(seq.getObjectAt(0));        body = PKIBody.getInstance(seq.getObjectAt(1));    }    public static ProtectedPart getInstance(Object o)    {        if (o instanceof ProtectedPart)        {            return (ProtectedPart)o;        }        if (o instanceof ASN1Sequence)        {            return new ProtectedPart((ASN1Sequence)o);        }        throw new IllegalArgumentException("Invalid object: " + o.getClass().getName());    }    public PKIHeader getHeader()    {        return header;    }    public PKIBody getBody()    {        return body;    }    /**     * <pre>     * ProtectedPart ::= SEQUENCE {     *                    header    PKIHeader,     *                    body      PKIBody     * }     * </pre>     * @return a basic ASN.1 object representation.     */    public DERObject toASN1Object()    {        ASN1EncodableVector v = new ASN1EncodableVector();        v.add(header);        v.add(body);        return new DERSequence(v);    }}

⌨️ 快捷键说明

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