org.bouncycastle.asn1.esf.OtherHash Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-fips Show documentation
Show all versions of bcutil-fips Show documentation
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.
The newest version!
/***************************************************************/
/****** DO NOT EDIT THIS CLASS bc-java SOURCE FILE ******/
/***************************************************************/
package org.bouncycastle.asn1.esf;
import org.bouncycastle.asn1.ASN1Choice;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.asn1.oiw.OIWObjectIdentifiers;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
/**
*
* OtherHash ::= CHOICE {
* sha1Hash OtherHashValue, -- This contains a SHA-1 hash
* otherHash OtherHashAlgAndValue
* }
*
*/
public class OtherHash
extends ASN1Object
implements ASN1Choice
{
private ASN1OctetString sha1Hash;
private OtherHashAlgAndValue otherHash;
public static OtherHash getInstance(Object obj)
{
if (obj instanceof OtherHash)
{
return (OtherHash)obj;
}
if (obj instanceof ASN1OctetString)
{
return new OtherHash((ASN1OctetString)obj);
}
return new OtherHash(OtherHashAlgAndValue.getInstance(obj));
}
private OtherHash(ASN1OctetString sha1Hash)
{
this.sha1Hash = sha1Hash;
}
public OtherHash(OtherHashAlgAndValue otherHash)
{
this.otherHash = otherHash;
}
public OtherHash(byte[] sha1Hash)
{
this.sha1Hash = new DEROctetString(sha1Hash);
}
public AlgorithmIdentifier getHashAlgorithm()
{
if (null == this.otherHash)
{
return new AlgorithmIdentifier(OIWObjectIdentifiers.idSHA1);
}
return this.otherHash.getHashAlgorithm();
}
public byte[] getHashValue()
{
if (null == this.otherHash)
{
return this.sha1Hash.getOctets();
}
return this.otherHash.getHashValue().getOctets();
}
public ASN1Primitive toASN1Primitive()
{
if (null == this.otherHash)
{
return this.sha1Hash;
}
return this.otherHash.toASN1Primitive();
}
}