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

org.bouncycastle.asn1.ASN1Absent Maven / Gradle / Ivy

Go to download

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.8 and up.

There is a newer version: 1.78.1
Show newest version
package org.bouncycastle.asn1;

import java.io.IOException;

/**
 * An ASN1 class that encodes to nothing, used in the OER library to deal with the Optional type.
 */
public class ASN1Absent
    extends ASN1Primitive
{

    public static final ASN1Absent INSTANCE = new ASN1Absent();

    private ASN1Absent()
    {

    }

    public int hashCode()
    {
        return 0;
    }

    boolean encodeConstructed()
    {
        return false;
    }

    int encodedLength(boolean withTag)
        throws IOException
    {
        return 0;
    }

    void encode(ASN1OutputStream out, boolean withTag)
        throws IOException
    {

    }

    boolean asn1Equals(ASN1Primitive o)
    {
        return o == this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy