Is there any kind of support for SSH connections in VC++?

Re: SSH connections by Carl

Carl
Thu Jun 08 18:06:07 CDT 2006

<mike7411@gmail.com> wrote in message
news:1149805173.463285.241860@g10g2000cwb.googlegroups.com...
> Is there any kind of support for SSH connections in VC++?

Your best bet is probably to use WinHttp or WinINet.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winhttp/http/about_winhttp.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/portal.asp

You can also use SSPI directly, but it's painful:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secauthn/security/sspi.asp

-cd