Uses of Class
com.sshtools.j2ssh.transport.publickey.SshPrivateKey

Packages that use SshPrivateKey
com.sshtools.j2ssh.agent   
com.sshtools.j2ssh.authentication   
com.sshtools.j2ssh.transport.kex   
com.sshtools.j2ssh.transport.publickey   
com.sshtools.j2ssh.transport.publickey.dsa   
com.sshtools.j2ssh.transport.publickey.rsa   
 

Uses of SshPrivateKey in com.sshtools.j2ssh.agent
 

Fields in com.sshtools.j2ssh.agent declared as SshPrivateKey
(package private)  SshPrivateKey SshAgentAddKey.prvkey
           
 

Methods in com.sshtools.j2ssh.agent that return SshPrivateKey
 SshPrivateKey SshAgentAddKey.getPrivateKey()
           
 

Methods in com.sshtools.j2ssh.agent with parameters of type SshPrivateKey
 void SshAgentClient.addKey(SshPrivateKey prvkey, SshPublicKey pubkey, java.lang.String description, KeyConstraints constraints)
          Add a key to the agent
 boolean KeyStore.addKey(SshPrivateKey prvkey, SshPublicKey pubkey, java.lang.String description, KeyConstraints cs)
           
 

Constructors in com.sshtools.j2ssh.agent with parameters of type SshPrivateKey
SshAgentAddKey(SshPrivateKey prvkey, SshPublicKey pubkey, java.lang.String description, KeyConstraints constraints)
          Creates a new SshAgentAddKey object.
 

Uses of SshPrivateKey in com.sshtools.j2ssh.authentication
 

Fields in com.sshtools.j2ssh.authentication declared as SshPrivateKey
protected  SshPrivateKey PublicKeyAuthenticationClient.key
           
protected  SshPrivateKey HostbasedAuthenticationClient.key
           
 

Methods in com.sshtools.j2ssh.authentication with parameters of type SshPrivateKey
 void PublicKeyAuthenticationClient.setKey(SshPrivateKey key)
           
 void HostbasedAuthenticationClient.setKey(SshPrivateKey key)
           
 

Uses of SshPrivateKey in com.sshtools.j2ssh.transport.kex
 

Methods in com.sshtools.j2ssh.transport.kex with parameters of type SshPrivateKey
abstract  void SshKeyExchange.performServerExchange(java.lang.String clientId, java.lang.String serverId, byte[] clientKexInit, byte[] serverKexInit, SshPrivateKey prvkey)
           
 void DhGroup1Sha1.performServerExchange(java.lang.String clientId, java.lang.String serverId, byte[] clientKexInit, byte[] serverKexInit, SshPrivateKey prvKey)
           
 

Uses of SshPrivateKey in com.sshtools.j2ssh.transport.publickey
 

Fields in com.sshtools.j2ssh.transport.publickey declared as SshPrivateKey
private  SshPrivateKey SshKeyPair.prv
           
 

Methods in com.sshtools.j2ssh.transport.publickey that return SshPrivateKey
static SshPrivateKey SshKeyPairFactory.decodePrivateKey(byte[] encoded)
           
abstract  SshPrivateKey SshKeyPair.decodePrivateKey(byte[] encoded)
           
 SshPrivateKey SshKeyPair.getPrivateKey()
           
 SshPrivateKey SshKeyPair.setPrivateKey(byte[] encoded)
           
 SshPrivateKey SshPrivateKeyFile.toPrivateKey(java.lang.String passphrase)
           
 

Methods in com.sshtools.j2ssh.transport.publickey with parameters of type SshPrivateKey
static SshPrivateKeyFile SshPrivateKeyFile.create(SshPrivateKey key, java.lang.String passphrase, SshPrivateKeyFormat format)
           
 void SshKeyPair.setPrivateKey(SshPrivateKey key)
           
 

Uses of SshPrivateKey in com.sshtools.j2ssh.transport.publickey.dsa
 

Subclasses of SshPrivateKey in com.sshtools.j2ssh.transport.publickey.dsa
(package private)  class SshDssPrivateKey
           
 

Methods in com.sshtools.j2ssh.transport.publickey.dsa that return SshPrivateKey
 SshPrivateKey SshDssKeyPair.decodePrivateKey(byte[] encoded)
           
 

Uses of SshPrivateKey in com.sshtools.j2ssh.transport.publickey.rsa
 

Subclasses of SshPrivateKey in com.sshtools.j2ssh.transport.publickey.rsa
 class SshRsaPrivateKey
           
 

Methods in com.sshtools.j2ssh.transport.publickey.rsa that return SshPrivateKey
 SshPrivateKey SshRsaKeyPair.decodePrivateKey(byte[] encoded)