public class MappedKeyPairProvider extends Object implements KeyPairProvider
Modifier and Type | Field and Description |
---|---|
static Function<Map<String,KeyPair>,KeyPairProvider> |
MAP_TO_KEY_PAIR_PROVIDER
Transforms a
Map of String ->KeyPair to a
KeyPairProvider where map key is the type and value is the
associated KeyPair |
ECDSA_SHA2_NISTP256, ECDSA_SHA2_NISTP384, ECDSA_SHA2_NISTP521, EMPTY_KEYPAIR_PROVIDER, SSH_DSS, SSH_ED25519, SSH_RSA
EMPTY_KEYS_PROVIDER
Constructor and Description |
---|
MappedKeyPairProvider(Collection<? extends KeyPair> pairs) |
MappedKeyPairProvider(KeyPair... pairs) |
MappedKeyPairProvider(Map<String,KeyPair> pairsMap) |
Modifier and Type | Method and Description |
---|---|
Iterable<String> |
getKeyTypes(SessionContext session) |
KeyPair |
loadKey(SessionContext session,
String type)
Load a key of the specified type which can be "ssh-rsa", "ssh-dss",
or "ecdsa-sha2-nistp{256,384,521}".
|
Iterable<KeyPair> |
loadKeys(SessionContext session)
Load available keys.
|
static Map<String,KeyPair> |
mapUniquePairs(Collection<? extends KeyPair> pairs) |
String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
wrap, wrap
exhaustCurrentIdentities, isEmpty, iterableOf, multiProvider, multiProvider, resolveKeyIdentityProvider, wrapKeyPairs, wrapKeyPairs
public static final Function<Map<String,KeyPair>,KeyPairProvider> MAP_TO_KEY_PAIR_PROVIDER
Map
of String
->KeyPair
to a
KeyPairProvider
where map key is the type and value is the
associated KeyPair
public MappedKeyPairProvider(KeyPair... pairs)
public MappedKeyPairProvider(Collection<? extends KeyPair> pairs)
public Iterable<KeyPair> loadKeys(SessionContext session)
KeyIdentityProvider
loadKeys
in interface KeyIdentityProvider
session
- The SessionContext
for invoking this load command - may
be null
if not invoked within a session context (e.g., offline tool or session unknown).Iterable
instance of available keys - ignored if null
public KeyPair loadKey(SessionContext session, String type)
KeyPairProvider
null
loadKey
in interface KeyPairProvider
session
- The SessionContext
for invoking this load command - may
be null
if not invoked within a session context (e.g., offline tool).type
- the type of key to loadnull
if this type of key is not availablepublic Iterable<String> getKeyTypes(SessionContext session)
getKeyTypes
in interface KeyPairProvider
session
- The SessionContext
for invoking this load command - may
be null
if not invoked within a session context (e.g., offline tool).Iterable
key types in preferred order - never null
public static Map<String,KeyPair> mapUniquePairs(Collection<? extends KeyPair> pairs)
Copyright © 2008–2022 The Apache Software Foundation. All rights reserved.