All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.oer.its.etsi102941.ToBeSignedLinkCertificate Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.3
Show newest version
package org.bouncycastle.oer.its.etsi102941;

import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.oer.its.ieee1609dot2.HashedData;
import org.bouncycastle.oer.its.ieee1609dot2.basetypes.Time32;

/**
 * ToBeSignedLinkCertificate ::= SEQUENCE {
 * expiryTime          Time32,
 * certificateHash     HashedData,
 * ...
 * }
 */
public class ToBeSignedLinkCertificate
    extends ASN1Object
{
    private final Time32 expiryTime;
    private final HashedData certificateHash;

    public ToBeSignedLinkCertificate(Time32 expiryTime, HashedData certificateHash)
    {
        this.expiryTime = expiryTime;
        this.certificateHash = certificateHash;
    }

    protected ToBeSignedLinkCertificate(ASN1Sequence seq)
    {
        if (seq.size() != 2)
        {
            throw new IllegalArgumentException("expected sequence size of 2");
        }
        expiryTime = Time32.getInstance(seq.getObjectAt(0));
        certificateHash = HashedData.getInstance(seq.getObjectAt(1));
    }


    public static ToBeSignedLinkCertificate getInstance(Object o)
    {
        if (o instanceof ToBeSignedLinkCertificate)
        {
            return (ToBeSignedLinkCertificate)o;
        }
        if (o != null)
        {
            return new ToBeSignedLinkCertificate(ASN1Sequence.getInstance(o));
        }
        return null;
    }

    public Time32 getExpiryTime()
    {
        return expiryTime;
    }

    public HashedData getCertificateHash()
    {
        return certificateHash;
    }

    public ASN1Primitive toASN1Primitive()
    {
        return new DERSequence(new ASN1Encodable[]{expiryTime, certificateHash});
    }

    public static Builder builder()
    {
        return new Builder();
    }

    public static class Builder
    {
        private Time32 expiryTime;
        private HashedData certificateHash;


        public Builder setExpiryTime(Time32 expiryTime)
        {
            this.expiryTime = expiryTime;
            return this;
        }

        public Builder setCertificateHash(HashedData certificateHash)
        {
            this.certificateHash = certificateHash;
            return this;
        }

        public ToBeSignedLinkCertificate createToBeSignedLinkCertificate()
        {
            return new ToBeSignedLinkCertificate(expiryTime, certificateHash);
        }

        public ToBeSignedLinkCertificateTlm createToBeSignedLinkCertificateTlm()
        {
            return new ToBeSignedLinkCertificateTlm(expiryTime, certificateHash);
        }

        public ToBeSignedLinkCertificateRca createToBeSignedLinkCertificateRca()
        {
            return new ToBeSignedLinkCertificateRca(expiryTime, certificateHash);
        }


    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy