📄 attributetypeandvalue.java
字号:
package org.bouncycastle.asn1.crmf;import org.bouncycastle.asn1.ASN1Encodable;import org.bouncycastle.asn1.ASN1EncodableVector;import org.bouncycastle.asn1.ASN1Sequence;import org.bouncycastle.asn1.DERObject;import org.bouncycastle.asn1.DERObjectIdentifier;import org.bouncycastle.asn1.DERSequence;public class AttributeTypeAndValue extends ASN1Encodable{ private DERObjectIdentifier type; private ASN1Encodable value; private AttributeTypeAndValue(ASN1Sequence seq) { type = (DERObjectIdentifier)seq.getObjectAt(0); value = (ASN1Encodable)seq.getObjectAt(1); } public static AttributeTypeAndValue getInstance(Object o) { if (o instanceof AttributeTypeAndValue) { return (AttributeTypeAndValue)o; } if (o instanceof ASN1Sequence) { return new AttributeTypeAndValue((ASN1Sequence)o); } throw new IllegalArgumentException("Invalid object: " + o.getClass().getName()); } public DERObjectIdentifier getType() { return type; } public ASN1Encodable getValue() { return value; } /** * <pre> * AttributeTypeAndValue ::= SEQUENCE { * type OBJECT IDENTIFIER, * value ANY DEFINED BY type } * </pre> * @return a basic ASN.1 object representation. */ public DERObject toASN1Object() { ASN1EncodableVector v = new ASN1EncodableVector(); v.add(type); v.add(value); return new DERSequence(v); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -