Uses of Interface
org.apache.sshd.common.keyprovider.KeyIdentityProvider
-
-
Uses of KeyIdentityProvider in org.apache.sshd.client.auth
Subinterfaces of KeyIdentityProvider in org.apache.sshd.client.auth Modifier and Type Interface Description interfaceAuthenticationIdentitiesProvider -
Uses of KeyIdentityProvider in org.apache.sshd.client.config.keys
Classes in org.apache.sshd.client.config.keys that implement KeyIdentityProvider Modifier and Type Class Description classBuiltinClientIdentitiesWatcherclassClientIdentitiesWatcherWatches over a group of files that contains client identitiesclassDefaultClientIdentitiesWatcherclassLazyClientKeyIdentityProviderTODO Add javadocMethods in org.apache.sshd.client.config.keys that return KeyIdentityProvider Modifier and Type Method Description static KeyIdentityProviderClientIdentityLoader. asKeyIdentityProvider(ClientIdentityLoader loader, Collection<? extends NamedResource> locations, FilePasswordProvider passwordProvider, boolean ignoreNonExisting)Uses the providedClientIdentityLoaderto lazy load the keys locations -
Uses of KeyIdentityProvider in org.apache.sshd.common.config.keys
Methods in org.apache.sshd.common.config.keys with parameters of type KeyIdentityProvider Modifier and Type Method Description static StringKeyRandomArt. combine(SessionContext session, char separator, KeyIdentityProvider provider)Creates the combined representation of the random art entries for the provided keysstatic <A extends Appendable>
AKeyRandomArt. combine(SessionContext session, A sb, char separator, KeyIdentityProvider provider)Appends the combined random art entries for the provided keysstatic Collection<KeyRandomArt>KeyRandomArt. generate(SessionContext session, KeyIdentityProvider provider)Extracts and generates random art entries for all key in the provider -
Uses of KeyIdentityProvider in org.apache.sshd.common.keyprovider
Subinterfaces of KeyIdentityProvider in org.apache.sshd.common.keyprovider Modifier and Type Interface Description interfaceKeyPairProviderProvider for key pairs.Classes in org.apache.sshd.common.keyprovider that implement KeyIdentityProvider Modifier and Type Class Description classAbstractKeyPairProviderProvides a default implementation for someKeyPairProvidermethodsclassAbstractResourceKeyPairProvider<R>classClassLoadableResourceKeyPairProviderThis provider loads private keys from the specified resources that are accessible viaClassLoader.getResourceAsStream(String).classFileKeyPairProviderThis host key provider loads private keys from the specified files.classMappedKeyPairProviderclassMultiKeyIdentityProviderAggregates severalKeyIdentityProvider-s into a single logical one that (lazily) exposes the keys from each aggregated providerFields in org.apache.sshd.common.keyprovider declared as KeyIdentityProvider Modifier and Type Field Description static KeyIdentityProviderKeyIdentityProvider. EMPTY_KEYS_PROVIDERAn "empty" implementation ofKeyIdentityProviderthat returns an empty group of key pairsFields in org.apache.sshd.common.keyprovider with type parameters of type KeyIdentityProvider Modifier and Type Field Description protected Iterable<? extends KeyIdentityProvider>MultiKeyIdentityProvider. providersMethods in org.apache.sshd.common.keyprovider that return KeyIdentityProvider Modifier and Type Method Description KeyIdentityProviderKeyIdentityProviderHolder. getKeyIdentityProvider()static KeyIdentityProviderKeyIdentityProvider. multiProvider(Collection<? extends KeyIdentityProvider> providers)Wraps a group ofKeyIdentityProviderinto a single onestatic KeyIdentityProviderKeyIdentityProvider. multiProvider(KeyIdentityProvider... providers)Wraps a group ofKeyIdentityProviderinto a single onestatic KeyIdentityProviderKeyIdentityProvider. resolveKeyIdentityProvider(KeyIdentityProvider identities, KeyIdentityProvider keys)Creates a "unified"KeyIdentityProviderout of 2 possible ones as follows:static KeyIdentityProviderKeyIdentityProvider. wrapKeyPairs(Iterable<KeyPair> pairs)Wraps a group ofKeyPairs into aKeyIdentityProviderstatic KeyIdentityProviderKeyIdentityProvider. wrapKeyPairs(KeyPair... pairs)Wraps a group ofKeyPairs into aKeyIdentityProviderMethods in org.apache.sshd.common.keyprovider that return types with arguments of type KeyIdentityProvider Modifier and Type Method Description Iterator<? extends KeyIdentityProvider>MultiKeyIdentityIterator. getProviders()Methods in org.apache.sshd.common.keyprovider with parameters of type KeyIdentityProvider Modifier and Type Method Description static booleanKeyIdentityProvider. isEmpty(KeyIdentityProvider provider)static KeyIdentityProviderKeyIdentityProvider. multiProvider(KeyIdentityProvider... providers)Wraps a group ofKeyIdentityProviderinto a single onestatic KeyIdentityProviderKeyIdentityProvider. resolveKeyIdentityProvider(KeyIdentityProvider identities, KeyIdentityProvider keys)Creates a "unified"KeyIdentityProviderout of 2 possible ones as follows:voidKeyIdentityProviderHolder. setKeyIdentityProvider(KeyIdentityProvider provider)Method parameters in org.apache.sshd.common.keyprovider with type arguments of type KeyIdentityProvider Modifier and Type Method Description static Iterable<KeyPair>KeyIdentityProvider. iterableOf(SessionContext session, Collection<? extends KeyIdentityProvider> providers)static KeyIdentityProviderKeyIdentityProvider. multiProvider(Collection<? extends KeyIdentityProvider> providers)Wraps a group ofKeyIdentityProviderinto a single oneConstructor parameters in org.apache.sshd.common.keyprovider with type arguments of type KeyIdentityProvider Constructor Description MultiKeyIdentityIterator(SessionContext session, Iterable<? extends KeyIdentityProvider> providers)MultiKeyIdentityProvider(Iterable<? extends KeyIdentityProvider> providers) -
Uses of KeyIdentityProvider in org.apache.sshd.common.util.security.bouncycastle
Classes in org.apache.sshd.common.util.security.bouncycastle that implement KeyIdentityProvider Modifier and Type Class Description classBouncyCastleGeneratorHostKeyProvider -
Uses of KeyIdentityProvider in org.apache.sshd.server.keyprovider
Classes in org.apache.sshd.server.keyprovider that implement KeyIdentityProvider Modifier and Type Class Description classAbstractGeneratorHostKeyProviderHolds a singleKeyPairwhich is generated the 1st timeAbstractGeneratorHostKeyProvider.loadKeys(SessionContext)is called.classSimpleGeneratorHostKeyProviderTODO Add javadoc
-