java.security
Class KeyPair

java.lang.Object
  |
  +--java.security.KeyPair
All Implemented Interfaces:
Serializable

public final class KeyPair
extends Object
implements Serializable

Safe:

See Also:
Serialized Form

Field Summary
private  PrivateKey privateKey
           
private  PublicKey publicKey
           
 
Constructor Summary
KeyPair(PublicKey publicKey, PrivateKey privateKey)
          Enabled: Constructs a key pair from the given public key and private key.
 
Method Summary
 Object[] __optUncall()
          Added:
 PrivateKey getPrivate()
          Enabled: Returns a reference to the private key component of this key pair.
 PublicKey getPublic()
          Enabled: Returns a reference to the public key component of this key pair.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

privateKey

private PrivateKey privateKey

publicKey

private PublicKey publicKey
Constructor Detail

KeyPair

public KeyPair(PublicKey publicKey,
               PrivateKey privateKey)
Enabled: Constructs a key pair from the given public key and private key.

Note that this constructor only stores references to the public and private key components in the generated key pair. This is safe, because Key objects are immutable.

Parameters:
publicKey - the public key.
privateKey - the private key.
Method Detail

getPublic

public PublicKey getPublic()
Enabled: Returns a reference to the public key component of this key pair.

Returns:
a reference to the public key.

getPrivate

public PrivateKey getPrivate()
Enabled: Returns a reference to the private key component of this key pair.

Returns:
a reference to the private key.

__optUncall

public Object[] __optUncall()
Added:

Returns:


comments?