Package org.apache.sshd.agent.common
Class AgentDelegate
java.lang.Object
org.apache.sshd.agent.common.AgentDelegate
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Channel
,SshAgent
-
Field Summary
FieldsFields inherited from interface org.apache.sshd.agent.SshAgent
SSH_AUTHSOCKET_ENV_NAME
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addIdentity
(KeyPair key, String comment) void
close()
boolean
isOpen()
void
void
removeIdentity
(PublicKey key) sign
(SessionContext session, PublicKey key, String algo, byte[] data)
-
Field Details
-
agent
-
-
Constructor Details
-
AgentDelegate
-
-
Method Details
-
isOpen
public boolean isOpen() -
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceChannel
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
-
getIdentities
- Specified by:
getIdentities
in interfaceSshAgent
- Throws:
IOException
-
sign
public Map.Entry<String,byte[]> sign(SessionContext session, PublicKey key, String algo, byte[] data) throws IOException - Specified by:
sign
in interfaceSshAgent
- Parameters:
session
- The currentSessionContext
key
- ThePublicKey
to use for signingalgo
- Recommended signature algorithm - ifnull
/empty then one will be selected based on the key type and/or signature factories. Note: even if specific algorithm specified, the implementation may disregard and choose anotherdata
- Data to sign- Returns:
- used algorithm + signed data - using the identity
- Throws:
IOException
- If failed to sign
-
addIdentity
- Specified by:
addIdentity
in interfaceSshAgent
- Throws:
IOException
-
removeIdentity
- Specified by:
removeIdentity
in interfaceSshAgent
- Throws:
IOException
-
removeAllIdentities
- Specified by:
removeAllIdentities
in interfaceSshAgent
- Throws:
IOException
-