wolfSSH is a small, fast, portable SSH implementation, including support for SCP and SFTP.
 
 
 
 
 
 
Go to file
John Safranek a744dcc540 refactor DoPacket to pass the correct data pointer and data index update 2016-06-17 14:23:20 -07:00
certs
examples Merge pull request #3 from ejohnstown/fixes1 2016-06-17 11:29:01 -07:00
m4
src refactor DoPacket to pass the correct data pointer and data index update 2016-06-17 14:23:20 -07:00
test initialize KDF test pointers to NULL 2016-04-06 10:40:02 -07:00
wolfssh 1. Adding parsing of publickey authentication data. 2016-06-17 14:20:59 -07:00
.gitignore move shared inline functions to misc file. add configure option to disable inline functions. 2016-04-01 14:40:22 -07:00
Makefile.am
README.md
autogen.sh
configure.ac Merge pull request #3 from ejohnstown/fixes1 2016-06-17 11:29:01 -07:00

README.md

wolfssh

wolfSSL's Embeddable SSH Server

building

From the source directory run:

$ ./autogen.sh
$ ./configure
$ make
$ make check

The autogen.sh script only has to be run the first time after cloning the repository. If you have already run it or are using code from a source archive, you should skip it.

examples

The directory examples contains an echoserver that any client should be able to connect to. From the terminal run:

$ ./examples/echoserver/echoserver

From another terminal run:

$ ssh_client localhost -p 22222

The server will send a canned banner to the client:

CANNED BANNER
This server is an example test server. It should have its own banner, but
it is currently using a canned one in the library. Be happy or not.

Characters typed into the client will be echoed to the screen by the server. If the characters are echoed twice, the client has local echo enabled.