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

📄 attcertvalidityperiod.java

📁 bouncycastle 是一个JAVA安全提供者
💻 JAVA
字号:
package org.bouncycastle.asn1.x509;import org.bouncycastle.asn1.ASN1Encodable;import org.bouncycastle.asn1.ASN1EncodableVector;import org.bouncycastle.asn1.ASN1Sequence;import org.bouncycastle.asn1.DERGeneralizedTime;import org.bouncycastle.asn1.DERObject;import org.bouncycastle.asn1.DERSequence;public class AttCertValidityPeriod    extends ASN1Encodable{    DERGeneralizedTime  notBeforeTime;    DERGeneralizedTime  notAfterTime;    public static AttCertValidityPeriod getInstance(            Object  obj)    {        if (obj instanceof AttCertValidityPeriod)        {            return (AttCertValidityPeriod)obj;        }        else if (obj instanceof ASN1Sequence)        {            return new AttCertValidityPeriod((ASN1Sequence)obj);        }                throw new IllegalArgumentException("unknown object in factory");    }        public AttCertValidityPeriod(        ASN1Sequence    seq)    {        notBeforeTime = (DERGeneralizedTime)seq.getObjectAt(0);        notAfterTime = (DERGeneralizedTime)seq.getObjectAt(1);    }    /**     * @param notBeforeTime     * @param notAfterTime     */    public AttCertValidityPeriod(        DERGeneralizedTime notBeforeTime,        DERGeneralizedTime notAfterTime)    {        this.notBeforeTime = notBeforeTime;        this.notAfterTime = notAfterTime;    }    public DERGeneralizedTime getNotBeforeTime()    {        return notBeforeTime;    }    public DERGeneralizedTime getNotAfterTime()    {        return notAfterTime;    }    /**     * Produce an object suitable for an ASN1OutputStream.     * <pre>     *  AttCertValidityPeriod  ::= SEQUENCE {     *       notBeforeTime  GeneralizedTime,     *       notAfterTime   GeneralizedTime     *  }      * </pre>     */    public DERObject toASN1Object()    {        ASN1EncodableVector  v = new ASN1EncodableVector();        v.add(notBeforeTime);        v.add(notAfterTime);        return new DERSequence(v);    }}

⌨️ 快捷键说明

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