Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public class

DHPrivateKeySpec

extends Object
implements KeySpec
java.lang.Object
   ↳ javax.crypto.spec.DHPrivateKeySpec

Class Overview

The key specification for a Diffie-Hellman private key.

Summary

Public Constructors
DHPrivateKeySpec ( BigInteger x, BigInteger p, BigInteger g)
Creates a new DHPrivateKeySpec with the specified private value x .
Public Methods
BigInteger getG ()
Returns the base generator g .
BigInteger getP ()
Returns the prime modulus p .
BigInteger getX ()
Returns the private value x .
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public DHPrivateKeySpec ( BigInteger x, BigInteger p, BigInteger g)

Added in API level 1

Creates a new DHPrivateKeySpec with the specified private value x . prime modulus p and base generator g .

Parameters
x the private value.
p the prime modulus.
g the base generator.

Public Methods

public BigInteger getG ()

Added in API level 1

Returns the base generator g .

Returns
  • the base generator g .

public BigInteger getP ()

Added in API level 1

Returns the prime modulus p .

Returns
  • the prime modulus p .

public BigInteger getX ()

Added in API level 1

Returns the private value x .

Returns
  • the private value x .