Example usage for org.bouncycastle.jce.spec ElGamalPublicKeySpec getY

List of usage examples for org.bouncycastle.jce.spec ElGamalPublicKeySpec getY

Introduction

In this page you can find the example usage for org.bouncycastle.jce.spec ElGamalPublicKeySpec getY.

Prototype

public BigInteger getY() 

Source Link

Document

Returns the public value y.

Usage

From source file:ElGamalPublicPGKey.java

License:Open Source License

public ElGamalPublicPGKey(ElGamalPublicKeySpec spec) {
    this.y = spec.getY();
    this.elSpec = new ElGamalParameterSpec(spec.getParams().getP(), spec.getParams().getG());
}