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

org.bouncycastle.asn1.x9.DHPublicKey Maven / Gradle / Ivy

Go to download

The FIPS 140-3 Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms certified to FIPS 140-3 level 1. This jar contains JCE provider and low-level API for the BC-FJA version 2.0.0, FIPS Certificate #4743. Please see certificate for certified platform details.

There is a newer version: 2.0.0
Show newest version
/***************************************************************/
/******    DO NOT EDIT THIS CLASS bc-java SOURCE FILE     ******/
/***************************************************************/
package org.bouncycastle.asn1.x9;

import java.math.BigInteger;

import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1TaggedObject;

/**
 * X9.42 definition of a DHPublicKey
 * 
 *     DHPublicKey ::= INTEGER
 * 
*/ public class DHPublicKey extends ASN1Object { private ASN1Integer y; /** * Return a DHPublicKey from the passed in tagged object. * * @param obj a tagged object. * @param explicit true if the contents of the object is explictly tagged, false otherwise. * @return a DHPublicKey */ public static DHPublicKey getInstance(ASN1TaggedObject obj, boolean explicit) { return getInstance(ASN1Integer.getInstance(obj, explicit)); } /** * Return a DHPublicKey from the passed in object. * * @param obj an object for conversion or a byte[]. * @return a DHPublicKey */ public static DHPublicKey getInstance(Object obj) { if (obj == null || obj instanceof DHPublicKey) { return (DHPublicKey)obj; } if (obj instanceof ASN1Integer) { return new DHPublicKey((ASN1Integer)obj); } throw new IllegalArgumentException("Invalid DHPublicKey: " + obj.getClass().getName()); } private DHPublicKey(ASN1Integer y) { if (y == null) { throw new IllegalArgumentException("'y' cannot be null"); } this.y = y; } /** * Base constructor. * * @param y the public value Y. */ public DHPublicKey(BigInteger y) { if (y == null) { throw new IllegalArgumentException("'y' cannot be null"); } this.y = new ASN1Integer(y); } /** * Return the public value Y for the key. * * @return the Y value. */ public BigInteger getY() { return this.y.getPositiveValue(); } /** * Return an ASN.1 primitive representation of this object. * * @return an ASN1Integer. */ public ASN1Primitive toASN1Primitive() { return this.y; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy