|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||
| Packages that use ComponentFactory | |
|---|---|
| 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. |
| Uses of ComponentFactory in com.maverick.ssh.components |
|---|
| Methods in com.maverick.ssh.components that return ComponentFactory | |
|---|---|
ComponentFactory |
ComponentManager.supportedDigests()
The supported digests |
ComponentFactory |
ComponentManager.supportedHMacsCS()
The supported SSH2 Hmacs. |
ComponentFactory |
ComponentManager.supportedHMacsSC()
The supported SSH2 Hmacs. |
ComponentFactory |
ComponentManager.supportedKeyExchanges()
The supported SSH2 key exchanges. |
ComponentFactory |
ComponentManager.supportedPublicKeys()
The supported public keys |
ComponentFactory |
ComponentManager.supportedSsh1CiphersCS()
The supported SSH1 ciphers. |
ComponentFactory |
ComponentManager.supportedSsh1CiphersSC()
The supported SSH1 ciphers. |
ComponentFactory |
ComponentManager.supportedSsh2CiphersCS()
The supported SSH2 ciphers. |
ComponentFactory |
ComponentManager.supportedSsh2CiphersSC()
The supported SSH2 ciphers. |
| Methods in com.maverick.ssh.components with parameters of type ComponentFactory | |
|---|---|
protected abstract void |
ComponentManager.initializeDigestFactory(ComponentFactory digests)
Initialize the digest factory. |
protected abstract void |
ComponentManager.initializeHmacFactory(ComponentFactory hmacs)
Initialize the SSH2 HMAC factory. |
protected abstract void |
ComponentManager.initializeKeyExchangeFactory(ComponentFactory keyexchange)
Initialize the SSH2 key exchange factory. |
protected abstract void |
ComponentManager.initializePublicKeyFactory(ComponentFactory publickeys)
Initialize the public key factory. |
protected abstract void |
ComponentManager.initializeSsh1CipherFactory(ComponentFactory ciphers)
Initialize the SSH1 cipher factory. |
protected abstract void |
ComponentManager.initializeSsh2CipherFactory(ComponentFactory ciphers)
Initialize the SSH2 cipher factory. |
| Uses of ComponentFactory in com.maverick.ssh.components.jce |
|---|
| Methods in com.maverick.ssh.components.jce with parameters of type ComponentFactory | |
|---|---|
protected void |
JCEComponentManager.initializeDigestFactory(ComponentFactory digests)
|
protected void |
JCEComponentManager.initializeHmacFactory(ComponentFactory hmacs)
|
protected void |
JCEComponentManager.initializeKeyExchangeFactory(ComponentFactory keyexchange)
|
protected void |
JCEComponentManager.initializePublicKeyFactory(ComponentFactory publickeys)
|
protected void |
JCEComponentManager.initializeSsh1CipherFactory(ComponentFactory ciphers)
|
protected void |
JCEComponentManager.initializeSsh2CipherFactory(ComponentFactory ciphers)
|
| Uses of ComponentFactory in com.maverick.ssh.components.standalone |
|---|
| Methods in com.maverick.ssh.components.standalone with parameters of type ComponentFactory | |
|---|---|
protected void |
StandaloneComponentManager.initializeDigestFactory(ComponentFactory digests)
|
void |
StandaloneComponentManager.initializeHmacFactory(ComponentFactory hmacs)
|
protected void |
StandaloneComponentManager.initializeKeyExchangeFactory(ComponentFactory keyexchange)
|
void |
StandaloneComponentManager.initializePublicKeyFactory(ComponentFactory publickeys)
|
protected void |
StandaloneComponentManager.initializeSsh1CipherFactory(ComponentFactory ciphers)
|
void |
StandaloneComponentManager.initializeSsh2CipherFactory(ComponentFactory ciphers)
|
| Uses of ComponentFactory in com.maverick.sshd |
|---|
| Methods in com.maverick.sshd that return ComponentFactory | |
|---|---|
ComponentFactory |
SshContext.supportedAuthenticationMechanisms()
Get the supported authentication mechanisms. |
ComponentFactory |
SshContext.supportedChannels()
Get the supported Channel's for this SSHD instance. |
ComponentFactory |
SshContext.supportedCiphersCS()
Returns a factory implementation that enables configuration of the available ciphers. |
ComponentFactory |
SshContext.supportedCiphersSC()
|
ComponentFactory |
SshContext.supportedCompressionsCS()
Get the supported compression algorithms. |
ComponentFactory |
SshContext.supportedCompressionsSC()
|
ComponentFactory |
SshContext.supportedKeyExchanges()
Get the supported key exchange methods. |
ComponentFactory |
SshContext.supportedMacsCS()
Get the supported message authentication algorithms. |
ComponentFactory |
SshContext.supportedMacsSC()
|
ComponentFactory |
SshContext.supportedPublicKeys()
|
ComponentFactory |
SshContext.supportedSubsystems()
Get the supported Subsystem's for this
SSHD instance. |
| Uses of ComponentFactory in com.maverick.sshd.components |
|---|
| Methods in com.maverick.sshd.components that return ComponentFactory | |
|---|---|
ComponentFactory |
ServerComponentManager.supportedDigests()
Return the supported digest factory. |
ComponentFactory |
ServerComponentManager.supportedHMacsCS()
Return the supported SSH2 HMac factory. |
ComponentFactory |
ServerComponentManager.supportedHMacsSC()
|
ComponentFactory |
ServerComponentManager.supportedKeyExchanges()
Return the supported SSH2 key exchanges. |
ComponentFactory |
ServerComponentManager.supportedPublicKeys()
Return the supported public key factory. |
ComponentFactory |
ServerComponentManager.supportedSsh2CiphersCS()
Return the supported SSH2 cipher factory. |
ComponentFactory |
ServerComponentManager.supportedSsh2CiphersSC()
|
| Methods in com.maverick.sshd.components with parameters of type ComponentFactory | |
|---|---|
protected abstract void |
ServerComponentManager.initializeDigestFactory(ComponentFactory digests)
Initialize the digest factory. |
protected abstract void |
ServerComponentManager.initializeHmacFactory(ComponentFactory hmacs)
Initialize the SSH2 HMac factory. |
protected abstract void |
ServerComponentManager.initializeKeyExchangeFactory(ComponentFactory keyexchange)
Initialize the key exchange factory. |
protected abstract void |
ServerComponentManager.initializePublicKeyFactory(ComponentFactory publickeys)
Initialize the public key factory. |
protected abstract void |
ServerComponentManager.initializeSsh2CipherFactory(ComponentFactory ciphers)
Initialize the SSH2 cipher factory. |
| Uses of ComponentFactory in com.maverick.sshd.components.jce |
|---|
| Methods in com.maverick.sshd.components.jce with parameters of type ComponentFactory | |
|---|---|
protected void |
JCEServerComponentManager.initializeDigestFactory(ComponentFactory digests)
|
protected void |
JCEServerComponentManager.initializeHmacFactory(ComponentFactory hmacs)
|
protected void |
JCEServerComponentManager.initializeKeyExchangeFactory(ComponentFactory keyexchange)
|
protected void |
JCEServerComponentManager.initializePublicKeyFactory(ComponentFactory publickeys)
|
protected void |
JCEServerComponentManager.initializeSsh2CipherFactory(ComponentFactory ciphers)
|
| Uses of ComponentFactory in com.maverick.sshd.components.standalone |
|---|
| Methods in com.maverick.sshd.components.standalone with parameters of type ComponentFactory | |
|---|---|
protected void |
StandaloneServerComponentManager.initializeDigestFactory(ComponentFactory digests)
|
void |
StandaloneServerComponentManager.initializeHmacFactory(ComponentFactory hmacs)
|
protected void |
StandaloneServerComponentManager.initializeKeyExchangeFactory(ComponentFactory keyexchange)
|
void |
StandaloneServerComponentManager.initializePublicKeyFactory(ComponentFactory publickeys)
|
void |
StandaloneServerComponentManager.initializeSsh2CipherFactory(ComponentFactory ciphers)
|
|
|||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||