views:

60

answers:

2

Hi there,

I'm in the need for a SCP library (free or commercial) to be used in a .Net 3.5 project. I've already had a look at SharpSSH but it lacks the a couple of basic features (like enumerating all files in a remote directory). Do you know a good, solid and cheap library?

+3  A: 

Do you need it to be SCP or SFTP? SCP is part of SSH1 protocol, which is considered to be insecure (due to certain design flaws). SFTP is part of SSH2, modern version of the protocol.

You can find the comparison of different SFTP components for .NET here.

Eugene Mayevski 'EldoS Corp
SCP works perfectly fine with SSH2
Mauricio Scheffer
Don't confuse SCP as program and SCP protocol. I was talking about the protocol.
Eugene Mayevski 'EldoS Corp
A: 

It's not actually the case that SCP is part of SSH1. The SCP protocol can be run over SSH2, and usually is.

Bruce Blackshaw
This should have been a comment to the answer above.
erikkallen