public class

GOST3410PublicKeyParameterSetSpec

extends Object
java.lang.Object
   ↳ org.bouncycastle.jce.spec.GOST3410PublicKeyParameterSetSpec

Class Overview

ParameterSpec for a GOST 3410-94 key parameters.

Summary

Public Constructors
GOST3410PublicKeyParameterSetSpec(BigInteger p, BigInteger q, BigInteger a)
Creates a new GOST3410ParameterSpec with the specified parameter values.
Public Methods
boolean equals(Object o)
BigInteger getA()
Returns the base a.
BigInteger getP()
Returns the prime p.
BigInteger getQ()
Returns the sub-prime q.
int hashCode()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public GOST3410PublicKeyParameterSetSpec (BigInteger p, BigInteger q, BigInteger a)

Creates a new GOST3410ParameterSpec with the specified parameter values.

Parameters
p the prime.
q the sub-prime.
a the base.

Public Methods

public boolean equals (Object o)

public BigInteger getA ()

Returns the base a.

Returns
  • the base a.

public BigInteger getP ()

Returns the prime p.

Returns
  • the prime p.

public BigInteger getQ ()

Returns the sub-prime q.

Returns
  • the sub-prime q.

public int hashCode ()