Package ghidra.framework.remote
Class SSHSignatureCallback
- java.lang.Object
-
- ghidra.framework.remote.SSHSignatureCallback
-
- All Implemented Interfaces:
java.io.Serializable
,javax.security.auth.callback.Callback
public class SSHSignatureCallback extends java.lang.Object implements javax.security.auth.callback.Callback, java.io.Serializable
SSHSignatureCallback
provides a Callback implementation used to perform SSH authentication. This callback is instantiated by the server with a random token which must be signed using the user's SSH private key.It is the responsibility of the callback handler to invoke the sign method and return this object in response to the callback.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description SSHSignatureCallback(byte[] token, byte[] serverSignature)
Construct callback with a random token to be signed by the client.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getServerSignature()
byte[]
getSignature()
byte[]
getToken()
boolean
isSigned()
void
sign(java.lang.Object sshPrivateKey)
Sign this challenge with the specified SSH private key.
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getToken
public byte[] getToken()
- Returns:
- token to be signed using user certificate.
-
getSignature
public byte[] getSignature()
- Returns:
- signed token bytes set by callback handler.
-
getServerSignature
public byte[] getServerSignature()
- Returns:
- the server's signature of the token bytes.
-
isSigned
public boolean isSigned()
- Returns:
- true if callback has been signed
-
sign
public void sign(java.lang.Object sshPrivateKey) throws java.io.IOException
Sign this challenge with the specified SSH private key.- Parameters:
sshPrivateKey
- RSAPrivateKey or DSAPrivateKey- Throws:
java.io.IOException
- if signature generation failed- See Also:
RSAPrivateKey
,DSAPrivateKey
-
-