|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use SshKeyPair | |
|---|---|
| com.maverick.ssh.components | This package contains an abstract cryptographic provider for the SSH protocol. |
| com.maverick.ssh.components.jce | This package contains a set of algoritm implementations that enable the Maverick API to use a Java Cryptography Extension provider. |
| com.maverick.ssh.components.standalone | This package contains a set of algoritm implementations that use an internal cryptographic provider. |
| com.maverick.sshd | This package contains the base implementation of the SSH server. |
| com.maverick.sshd.components | This package contains the specific server components required by the Maverick SSHD server. |
| com.maverick.sshd.components.jce | This package contains a set of algoritm implementations that enable the Maverick SSHD to use a Java Cryptography Extension provider. |
| com.maverick.sshd.components.standalone | This package contains a set of algoritm implementations that enable the Maverick SSHD to use the internal cryptographic provider. |
| com.sshtools.publickey | This package contains utility classes for loading/storing public/private keys and is based on the SSHTools key format architecture. |
| Uses of SshKeyPair in com.maverick.ssh.components |
|---|
| Methods in com.maverick.ssh.components that return SshKeyPair | |
|---|---|
abstract SshKeyPair |
ComponentManager.generateDsaKeyPair(int bits)
Generate a new DSA public/private key pair. |
abstract SshKeyPair |
ComponentManager.generateRsaKeyPair(int bits,
int version)
Generate an RSA public/private pair. |
static SshKeyPair |
SshKeyPair.getKeyPair(SshPrivateKey prv,
SshPublicKey pub)
Wraps a public/private key pair into an SshKeyPair instance. |
| Uses of SshKeyPair in com.maverick.ssh.components.jce |
|---|
| Methods in com.maverick.ssh.components.jce that return SshKeyPair | |
|---|---|
SshKeyPair |
JCEComponentManager.generateDsaKeyPair(int bits)
|
SshKeyPair |
JCEComponentManager.generateRsaKeyPair(int bits,
int version)
|
| Uses of SshKeyPair in com.maverick.ssh.components.standalone |
|---|
| Methods in com.maverick.ssh.components.standalone that return SshKeyPair | |
|---|---|
SshKeyPair |
StandaloneComponentManager.generateDsaKeyPair(int bits)
|
SshKeyPair |
StandaloneComponentManager.generateRsaKeyPair(int bits,
int version)
|
| Uses of SshKeyPair in com.maverick.sshd |
|---|
| Methods in com.maverick.sshd that return SshKeyPair | |
|---|---|
static SshKeyPair |
SshContext.GenerateKeyFiles(java.io.File keyFilename,
java.lang.String type,
int bitlength,
int privateKeyFormat,
int publicKeyFormat)
Generate a public and private key pair, save them to keyFilename and keyFilename.pub, return the key pair |
SshKeyPair |
SshContext.getHostKey(java.lang.String algorithm)
Get the SSHD host key for a given algorithm. |
SshKeyPair[] |
SshContext.getHostKeys()
Get all the hosts keys. |
SshKeyPair |
SshContext.loadKey(java.io.File key,
java.lang.String passphrase)
|
SshKeyPair |
SshContext.loadKey(java.io.InputStream in,
java.lang.String passphrase)
|
| Methods in com.maverick.sshd with parameters of type SshKeyPair | |
|---|---|
void |
SshContext.addHostKey(SshKeyPair keyPair)
Add a host key to the configuration. |
| Uses of SshKeyPair in com.maverick.sshd.components |
|---|
| Methods in com.maverick.sshd.components that return SshKeyPair | |
|---|---|
abstract SshKeyPair |
ServerComponentManager.generateDsaKeyPair(int bits)
Generate a DSA key pair. |
abstract SshKeyPair |
ServerComponentManager.generateRsaKeyPair(int bits)
Generate an RSA key pair. |
| Uses of SshKeyPair in com.maverick.sshd.components.jce |
|---|
| Methods in com.maverick.sshd.components.jce that return SshKeyPair | |
|---|---|
SshKeyPair |
JCEServerComponentManager.generateDsaKeyPair(int bits)
|
SshKeyPair |
JCEServerComponentManager.generateRsaKeyPair(int bits)
|
| Uses of SshKeyPair in com.maverick.sshd.components.standalone |
|---|
| Methods in com.maverick.sshd.components.standalone that return SshKeyPair | |
|---|---|
SshKeyPair |
StandaloneServerComponentManager.generateDsaKeyPair(int bits)
|
SshKeyPair |
StandaloneServerComponentManager.generateRsaKeyPair(int bits)
|
| Uses of SshKeyPair in com.sshtools.publickey |
|---|
| Methods in com.sshtools.publickey that return SshKeyPair | |
|---|---|
static SshKeyPair |
SshKeyPairGenerator.generateKeyPair(java.lang.String algorithm,
int bits)
Generates a new key pair. |
SshKeyPair |
SshPrivateKeyFile.toKeyPair(java.lang.String passphrase)
Decode the private key using the users passphrase. |
| Methods in com.sshtools.publickey with parameters of type SshKeyPair | |
|---|---|
static SshPrivateKeyFile |
SshPrivateKeyFileFactory.create(SshKeyPair pair,
java.lang.String passphrase,
java.lang.String comment,
int format)
|
static void |
SshPrivateKeyFileFactory.createFile(SshKeyPair key,
java.lang.String passphrase,
java.lang.String comment,
int format,
java.io.File toFile)
Take a SshPrivateKey and write it to a file. |
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||