Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any SFTP or SSH library for Go? [closed]

Tags:

go

sftp

I can't seem to find any... it's a bit sad for a language positioned as networking-oriented one.

like image 663
Alex Gontmakher Avatar asked May 14 '11 07:05

Alex Gontmakher


2 Answers

After sometime in exp/ssh, the official ssh package now resides in the crypto/ssh subrepo: http://code.google.com/p/go/source/browse?repo=crypto#hg%2Fssh

like image 120
vcastellm Avatar answered Jan 04 '23 11:01

vcastellm


I know Caspar has already posted the link contained, but here is the list of community contributed packages:

http://godashboard.appspot.com/package

For completeness here are the official packages:

http://golang.org/pkg/

Also, since it is a VERY new language I don't feel too bad in saying, if it needs doing, I'm sure they would be happy for your contributions. (I try not to say "submit a patch" when we are talk about old languages/modules, however a new language is an exception)

like image 32
Joel Berger Avatar answered Jan 04 '23 12:01

Joel Berger