stuck
stuck

Reputation: 2291

how to authenticate to a linux server (from a Windows client)

I have a small client/server application, written in C, that needs to authenticate with a Linux server.

I do not want to transmit a password in clear text across the wire, nor do I want to invent some MD5+nonce system.

I'm hoping to find something 'standard' for this, what are my options?

I'm hoping that someone can point me to an API set, both on Windows and Linux, that are compatible and intended for interop?

Upvotes: 0

Views: 458

Answers (1)

Jon Lin
Jon Lin

Reputation: 143936

You can use libssh, which gives you an API for connecting to SSH servers on linux. It's really easy to use and includes a helpful tutorial.

Upvotes: 1

Related Questions