Package ghidra.framework.remote
Class SSHSignatureCallback
java.lang.Object
ghidra.framework.remote.SSHSignatureCallback
- All Implemented Interfaces:
Serializable
,Callback
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:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionSSHSignatureCallback
(byte[] token, byte[] serverSignature) Construct callback with a random token to be signed by the client. -
Method Summary
-
Field Details
-
serialVersionUID
public static final long serialVersionUID- See Also:
-
-
Constructor Details
-
SSHSignatureCallback
public SSHSignatureCallback(byte[] token, byte[] serverSignature) Construct callback with a random token to be signed by the client.- Parameters:
token
- random bytes to be signedserverSignature
- server signature of token (using server PKI)
-
-
Method Details
-
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()Get the server signature of token (using server PKI)- Returns:
- the server's signature of the token bytes.
-
isSigned
public boolean isSigned()- Returns:
- true if callback has been signed
-
sign
Sign this challenge with the specified SSH private key.- Parameters:
privateKeyParameters
- SSH private key parameters (RSAKeyParameters
orRSAKeyParameters
)- Throws:
IOException
- if signature generation failed
-