Class SSHSignatureCallback

java.lang.Object
ghidra.framework.remote.SSHSignatureCallback
All Implemented Interfaces:
Serializable, Callback

public class SSHSignatureCallback extends Object implements Callback, 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:
  • Field Details Link icon

  • Constructor Details Link icon

    • SSHSignatureCallback Link icon

      public SSHSignatureCallback(byte[] token, byte[] serverSignature)
      Construct callback with a random token to be signed by the client.
      Parameters:
      token - random bytes to be signed
      serverSignature - server signature of token (using server PKI)
  • Method Details Link icon

    • getToken Link icon

      public byte[] getToken()
      Returns:
      token to be signed using user certificate.
    • getSignature Link icon

      public byte[] getSignature()
      Returns:
      signed token bytes set by callback handler.
    • getServerSignature Link icon

      public byte[] getServerSignature()
      Get the server signature of token (using server PKI)
      Returns:
      the server's signature of the token bytes.
    • isSigned Link icon

      public boolean isSigned()
      Returns:
      true if callback has been signed
    • sign Link icon

      public void sign(Object privateKeyParameters) throws IOException
      Sign this challenge with the specified SSH private key.
      Parameters:
      privateKeyParameters - SSH private key parameters (RSAKeyParameters or RSAKeyParameters)
      Throws:
      IOException - if signature generation failed