in reply to Re: How Would I access a C++ compiler remotely through a Perl CGI Script?
in thread How Would I access a C++ compiler remotely through a Perl CGI Script?

Is there any reason to not use HTTPS? It seems like that'd be more or less as safe as SSH and would allow for the ease of use he seems to be looking for.
  • Comment on Re^2: How Would I access a C++ compiler remotely through a Perl CGI Script?

Replies are listed 'Best First'.
Re^3: How Would I access a C++ compiler remotely through a Perl CGI Script?
by Flame (Deacon) on Oct 23, 2005 at 00:38 UTC
    Afraid you missed the true point behind SSH for this task. SSH requires a login/password for the machine you're logging into, whereas https is only going to encrypt the data that is sent between the two computers. SSH prevents a random person from using it, https will only prevent a random person in the middle from understanding what another random person is sending to and from the webserver.


    My code doesn't have bugs, it just develops random features.

    Flame

Re^3: How Would I access a C++ compiler remotely through a Perl CGI Script?
by Anonymous Monk on Oct 23, 2005 at 17:52 UTC
    https is also very expensive to implement especially for a personal project for a student
      https is not expensive to implement. What is expensive, is having thawte/verisign/other 'trusted' source verify a persons identity and sign their certificate. For an ecommerce site, where you have to convince random strangers that you are who you say you are, that is important, for a personal site, it isn't.