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

📄 originatoridentifierorkey.java

📁 说明: 1、里面有什么: 1.1、org.bouncycastle.*下的所有软件是bouncycastle组织开发的软件包 1.2、org.infosecurity.*下的软件包括
💻 JAVA
字号:
package org.bouncycastle.asn1.cms;import org.bouncycastle.asn1.ASN1OctetString;import org.bouncycastle.asn1.ASN1Sequence;import org.bouncycastle.asn1.ASN1TaggedObject;import org.bouncycastle.asn1.DERTaggedObject;import org.bouncycastle.asn1.DEREncodable;import org.bouncycastle.asn1.DERObject;public class OriginatorIdentifierOrKey    implements DEREncodable{	private DEREncodable id;		public OriginatorIdentifierOrKey(        IssuerAndSerialNumber id)    {        this.id = id;	}		public OriginatorIdentifierOrKey(        ASN1OctetString id)    {        this.id = new DERTaggedObject(false, 0, id);	}		public OriginatorIdentifierOrKey(        OriginatorPublicKey id)    {        this.id = new DERTaggedObject(true, 1, id);	}		public OriginatorIdentifierOrKey(        DERObject id)    {		this.id = id;	}	    /**     * return an OriginatorIdentifierOrKey object from a tagged object.     *     * @param o the tagged object holding the object we want.     * @param explicit true if the object is meant to be explicitly     *              tagged false otherwise.     * @exception IllegalArgumentException if the object held by the     *          tagged object cannot be converted.     */	public static OriginatorIdentifierOrKey getInstance(        ASN1TaggedObject    o,        boolean             explicit)    {        if (!explicit)        {            throw new IllegalArgumentException(                    "Can't implicitly tag OriginatorIdentifierOrKey");        }		return getInstance(o.getObject());	}	    /**     * return an OriginatorIdentifierOrKey object from the given object.     *     * @param o the object we want converted.     * @exception IllegalArgumentException if the object cannot be converted.     */	public static OriginatorIdentifierOrKey getInstance(        Object o)    {		if (o == null || o instanceof OriginatorIdentifierOrKey)        {			return (OriginatorIdentifierOrKey)o;		}				if (o instanceof DERObject)        {			return new OriginatorIdentifierOrKey((DERObject)o);		}				throw new IllegalArgumentException("Invalid OriginatorIdentifierOrKey: " + o.getClass().getName());	} 	public DEREncodable getId()    {		return id;	}	    /**      * <pre>     * OriginatorIdentifierOrKey ::= CHOICE {     * 	issuerAndSerialNumber IssuerAndSerialNumber,     * 	subjectKeyIdentifier [0] SubjectKeyIdentifier,     * 	originatorKey [1] OriginatorPublicKey      * }     *     * SubjectKeyIdentifier ::= OCTET STRING     * </pre>     */	public DERObject getDERObject()    {		return id.getDERObject();	}}

⌨️ 快捷键说明

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