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

com.lowagie.bc.asn1.DERNull Maven / Gradle / Ivy

There is a newer version: 4.2.2
Show newest version
package com.lowagie.bc.asn1;

import java.io.IOException;

/**
 * A NULL object.
 */
public class DERNull
    extends ASN1Null
{
    byte[]  zeroBytes = new byte[0];

    public DERNull()
    {
    }

    void encode(
        DEROutputStream  out)
        throws IOException
    {
        out.writeEncoded(NULL, zeroBytes);
    }
    
	public boolean equals(
		Object o)
	{
        if ((o == null) || !(o instanceof DERNull))
        {
            return false;
        }
        
		return true;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy