Uses of Interface
org.apache.sshd.common.keyprovider.KeyPairProvider
-
-
Uses of KeyPairProvider in org.apache.sshd.client.config.keys
Classes in org.apache.sshd.client.config.keys that implement KeyPairProvider Modifier and Type Class Description class
BuiltinClientIdentitiesWatcher
class
ClientIdentitiesWatcher
Watches over a group of files that contains client identitiesclass
DefaultClientIdentitiesWatcher
Methods in org.apache.sshd.client.config.keys that return KeyPairProvider Modifier and Type Method Description static KeyPairProvider
ClientIdentity. loadDefaultKeyPairProvider(boolean strict, boolean supportedOnly, FilePasswordProvider provider, java.nio.file.LinkOption... options)
static KeyPairProvider
ClientIdentity. loadDefaultKeyPairProvider(java.nio.file.Path dir, boolean strict, boolean supportedOnly, FilePasswordProvider provider, java.nio.file.LinkOption... options)
-
Uses of KeyPairProvider in org.apache.sshd.common.config.keys
Methods in org.apache.sshd.common.config.keys that return KeyPairProvider Modifier and Type Method Description static KeyPairProvider
IdentityUtils. createKeyPairProvider(java.util.Map<java.lang.String,java.security.KeyPair> ids, boolean supportedOnly)
-
Uses of KeyPairProvider in org.apache.sshd.common.keyprovider
Classes in org.apache.sshd.common.keyprovider that implement KeyPairProvider Modifier and Type Class Description class
AbstractKeyPairProvider
Provides a default implementation for someKeyPairProvider
methodsclass
AbstractResourceKeyPairProvider<R>
class
ClassLoadableResourceKeyPairProvider
This provider loads private keys from the specified resources that are accessible viaClassLoader.getResourceAsStream(String)
.class
FileKeyPairProvider
This host key provider loads private keys from the specified files.class
MappedKeyPairProvider
Holds aMap
ofString
->KeyPair
where the map key is the type and value is the associatedKeyPair
Fields in org.apache.sshd.common.keyprovider declared as KeyPairProvider Modifier and Type Field Description static KeyPairProvider
KeyPairProvider. EMPTY_KEYPAIR_PROVIDER
AKeyPairProvider
that has no keysFields in org.apache.sshd.common.keyprovider with type parameters of type KeyPairProvider Modifier and Type Field Description static java.util.function.Function<java.util.Map<java.lang.String,java.security.KeyPair>,KeyPairProvider>
MappedKeyPairProvider. MAP_TO_KEY_PAIR_PROVIDER
Transforms aMap
ofString
->KeyPair
to aKeyPairProvider
where map key is the type and value is the associatedKeyPair
Methods in org.apache.sshd.common.keyprovider that return KeyPairProvider Modifier and Type Method Description KeyPairProvider
KeyPairProviderHolder. getKeyPairProvider()
Retrieve theKeyPairProvider
that will be used to find the host key to use on the server side or the user key on the client side.static KeyPairProvider
KeyPairProvider. wrap(java.lang.Iterable<java.security.KeyPair> pairs)
Wrap the providedKeyPair
s into aKeyPairProvider
static KeyPairProvider
KeyPairProvider. wrap(java.security.KeyPair... pairs)
Wrap the providedKeyPair
s into aKeyPairProvider
Methods in org.apache.sshd.common.keyprovider with parameters of type KeyPairProvider Modifier and Type Method Description void
KeyPairProviderHolder. setKeyPairProvider(KeyPairProvider keyPairProvider)
-
Uses of KeyPairProvider in org.apache.sshd.common.util.security.bouncycastle
Classes in org.apache.sshd.common.util.security.bouncycastle that implement KeyPairProvider Modifier and Type Class Description class
BouncyCastleGeneratorHostKeyProvider
-
Uses of KeyPairProvider in org.apache.sshd.server
Fields in org.apache.sshd.server declared as KeyPairProvider Modifier and Type Field Description private KeyPairProvider
SshServer. keyPairProvider
Methods in org.apache.sshd.server that return KeyPairProvider Modifier and Type Method Description KeyPairProvider
SshServer. getKeyPairProvider()
Methods in org.apache.sshd.server with parameters of type KeyPairProvider Modifier and Type Method Description void
SshServer. setKeyPairProvider(KeyPairProvider keyPairProvider)
-
Uses of KeyPairProvider in org.apache.sshd.server.config.keys
Methods in org.apache.sshd.server.config.keys that return KeyPairProvider Modifier and Type Method Description static KeyPairProvider
ServerIdentity. loadKeyPairProvider(java.util.Properties props, boolean supportedOnly, java.nio.file.LinkOption... options)
-
Uses of KeyPairProvider in org.apache.sshd.server.keyprovider
Classes in org.apache.sshd.server.keyprovider that implement KeyPairProvider Modifier and Type Class Description class
AbstractGeneratorHostKeyProvider
Holds a singleKeyPair
which is generated the 1st timeAbstractGeneratorHostKeyProvider.loadKeys(SessionContext)
is called.class
SimpleGeneratorHostKeyProvider
A simple implementation of anAbstractGeneratorHostKeyProvider
that writes and reads host keys using the OpenSSH file format. -
Uses of KeyPairProvider in org.apache.sshd.server.session
Fields in org.apache.sshd.server.session declared as KeyPairProvider Modifier and Type Field Description private KeyPairProvider
AbstractServerSession. keyPairProvider
Methods in org.apache.sshd.server.session that return KeyPairProvider Modifier and Type Method Description KeyPairProvider
AbstractServerSession. getKeyPairProvider()
Methods in org.apache.sshd.server.session with parameters of type KeyPairProvider Modifier and Type Method Description void
AbstractServerSession. setKeyPairProvider(KeyPairProvider keyPairProvider)
-