Jump to content

João Bosco

Members
  • Content Count

    2
  • Joined

  • Last visited

Posts posted by João Bosco


  1. I'm using the "SSH_Pascal" library and creating an SSH connection via delphi.

    After a lot of effort I discovered that it is necessary to have your RSA key and your host in this file called "known_hosts" in windows it is usually at: %USERPROFILE% + .ssh\known_hosts

    To create an RSA key using openSSH via CMD is simple, see the command:

    ssh-keyscan -t rsa your host


    There, your RSA key is created.

    The only difficulty I'm having is getting this RSA via cmd and adding it to the file.

    the simplest way through cmd would be: ssh-keyscan -t rsa your host > %USERPROFILE% + .ssh\known_hosts To insert the value into the file.

    But using by delphi is not working.

     

    I tried using a function(GIst.Github) to get the DOS output, without success.

    When it enters This step of the Function

    WasOK := ReadFile(StdOutPipeRead, Buffer, 255, BytesRead, nil);

    it hangs It just hangs.

     

    I've tried to increase the buffer size but without success, does anyone have any ideas?

     

     

×