Uses of Interface
java.security.PrivateKey

Packages that use PrivateKey
java.security Provides the classes and interfaces for the security framework. 
java.security.interfaces Provides interfaces for generating RSA (Rivest, Shamir and Adleman AsymmetricCipher algorithm) keys as defined in the RSA Laboratory Technical Note PKCS#1, and DSA (Digital Signature Algorithm) keys as defined in NIST's FIPS-186. 
javax.net.ssl Provides classes for the secure socket package. 
 

Uses of PrivateKey in java.security
 

Methods in java.security that return PrivateKey
 PrivateKey KeyFactory.generatePrivate(KeySpec keySpec)
          Generates a private key object from the provided key specification (key material).
 PrivateKey KeyPair.getPrivate()
          Returns a reference to the private key component of this key pair.
 PrivateKey Signer.getPrivateKey()
          Deprecated. Returns this signer's private key.
 

Methods in java.security with parameters of type PrivateKey
 void Signature.initSign(PrivateKey privateKey)
          Initialize this object for signing.
 void Signature.initSign(PrivateKey privateKey, SecureRandom random)
          Initialize this object for signing.
 

Constructors in java.security with parameters of type PrivateKey
KeyPair(PublicKey publicKey, PrivateKey privateKey)
          Constructs a key pair from the given public key and private key.
SignedObject(Serializable object, PrivateKey signingKey, Signature signingEngine)
          Constructs a SignedObject from any Serializable object.
 

Uses of PrivateKey in java.security.interfaces
 

Subinterfaces of PrivateKey in java.security.interfaces
 interface DSAPrivateKey
          The standard interface to a DSA private key.
 interface RSAPrivateCrtKey
          The interface to an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values.
 interface RSAPrivateKey
          The interface to an RSA private key.
 

Uses of PrivateKey in javax.net.ssl
 

Methods in javax.net.ssl that return PrivateKey
 PrivateKey X509KeyManager.getPrivateKey(String alias)
          Returns the key associated with the given alias.