Go to file
2015-03-07 11:32:08 +01:00
docs docs: fixed a bunch of typos 2014-07-28 23:55:34 +02:00
example examples/x11.c: include sys/select.h for improved portability 2015-03-04 22:57:25 +01:00
include Updated copyright year. 2014-11-30 15:48:55 +01:00
m4 Ignore libssh2_config.h.in and stamp-h2 in example/ and remove .cvsignore 2010-01-30 00:25:46 +01:00
nw NetWare build: added some missing exports. 2015-01-08 21:03:17 +01:00
src knownhost.c: fix use of uninitialized argument variable wrote 2014-12-29 18:37:46 +01:00
tests tests on Windows: check for WSAStartup return code 2014-12-15 01:00:36 +01:00
vms VMS specific: make sure final release can be installed over daily build 2010-05-22 11:06:08 +01:00
win32 Watcom build: added support for WinCNG build. 2014-12-08 02:56:34 +01:00
.gitattribute Ensure that win32/libssh2.dsp will be generated with CRLF line endings 2009-10-17 02:58:53 +02:00
.gitignore .gitignore: don't ignore INSTALL 2015-03-07 11:32:08 +01:00
acinclude.m4 Fix shell usage. 2009-09-23 09:39:47 +02:00
AUTHORS AUTHORS: synced with 42fec44c8a 2012-08-19 23:34:53 +02:00
buildconf Make it portable; test uses = for string comparison (not ==). Indent. 2010-02-23 15:27:18 +01:00
config.rpath Revert "config.rpath: generated file, no need to keep in git" 2012-06-11 14:52:31 +02:00
configure.ac configure: change LIBS not LDFLAGS when checking for libs 2014-12-04 22:45:30 +01:00
COPYING COPYING: bump the copyright year 2014-08-31 00:41:58 +02:00
get_ver.awk Added copyright define to libssh2.h and use it for binary builds. 2010-08-15 04:09:01 +02:00
git2news.pl NEWS: auto-generated from git 2011-04-04 13:31:33 +02:00
HACKING Mention libssh2-style.el. 2009-10-29 10:39:15 +01:00
libssh2-style.el helper script for emacs users to get the code style done libssh2-style 2008-12-20 12:36:50 +00:00
libssh2.pc.in Changed 'Requires' to 'Requires.private'. 2012-04-23 12:33:08 +02:00
Makefile.am win32: Added WinCNG targets to generated Visual Studio project 2014-05-18 00:07:59 +02:00
Makefile.inc Move automake conditionals added by commit d512b25f out of Makefile.inc 2013-11-13 02:37:06 +01:00
Makefile.libgcrypt.inc Move automake conditionals added by commit d512b25f out of Makefile.inc 2013-11-13 02:37:06 +01:00
Makefile.OpenSSL.inc Move automake conditionals added by commit d512b25f out of Makefile.inc 2013-11-13 02:37:06 +01:00
Makefile.WinCNG.inc Added Windows Cryptography API: Next Generation based backend 2014-03-16 17:01:16 +01:00
maketgz maketgz: use git2news.pl by the correct name 2011-04-05 19:19:49 +02:00
NEWS NEWS: auto-generated from git 2011-04-04 13:31:33 +02:00
NMakefile NMake build: added support for WinCNG build. 2014-11-30 18:39:57 +01:00
README Update mailing list URL to new address 2009-07-10 20:11:29 +02:00
RELEASE-NOTES RELEASE-NOTES: synced with a8473c819b 2015-03-04 09:38:17 +01:00
TODO TODO: remove issues we (sort of) did already 2011-12-09 14:21:36 +01:00

libssh2 - SSH2 library
======================

libssh2 is a library implementing the SSH2 protocol, available under
the revised BSD license.

Web site: http://www.libssh2.org/

Mailing list: http://cool.haxx.se/mailman/listinfo/libssh2-devel

Generic installation instructions are in INSTALL.  Some ./configure
options deserve additional comments:

	* --enable-crypt-none

		The SSH2 Transport allows for unencrypted data
		transmission using the "none" cipher.  Because this is
		such a huge security hole, it is typically disabled on
		SSH2 implementations and is disabled in libssh2 by
		default as well.

		Enabling this option will allow for "none" as a
		negotiable method, however it still requires that the
		method be advertized by the remote end and that no
		more-preferable methods are available.

	* --enable-mac-none

		The SSH2 Transport also allows implementations to
		forego a message authentication code.  While this is
		less of a security risk than using a "none" cipher, it
		is still not recommended as disabling MAC hashes
		removes a layer of security.

		Enabling this option will allow for "none" as a
		negotiable method, however it still requires that the
		method be advertized by the remote end and that no
		more-preferable methods are available.

	* --disable-gex-new

		The diffie-hellman-group-exchange-sha1 (dh-gex) key
		exchange method originally defined an exchange
		negotiation using packet type 30 to request a
		generation pair based on a single target value.  Later
		refinement of dh-gex provided for range and target
		values.  By default libssh2 will use the newer range
		method.

		If you experience trouble connecting to an old SSH
		server using dh-gex, try this option to fallback on
		the older more reliable method.

  	* --with-libgcrypt
  	* --without-libgcrypt
	* --with-libgcrypt-prefix=DIR

		libssh2 can use the Libgcrypt library
		(http://www.gnupg.org/) for cryptographic operations.
		Either Libgcrypt or OpenSSL is required.

		Configure will attempt to locate Libgcrypt
		automatically.

 		If your installation of Libgcrypt is in another
		location, specify it using --with-libgcrypt-prefix.

	* --with-openssl
	* --without-openssl
	* --with-libssl-prefix=[DIR]

		libssh2 can use the OpenSSL library
		(http://www.openssl.org) for cryptographic operations.
		Either Libgcrypt or OpenSSL is required.

		Configure will attempt to locate OpenSSL in the
		default location.

		If your installation of OpenSSL is in another
		location, specify it using --with-libssl-prefix.

	* --with-libz
	* --without-libz
	* --with-libz-prefix=[DIR]

		If present, libssh2 will attempt to use the zlib
		(http://www.zlib.org) for payload compression, however
		zlib is not required.

		If your installation of Libz is in another location,
		specify it using --with-libz-prefix.

	* --enable-debug

		Will make the build use more pedantic and strict compiler
		options as well as enable the libssh2_trace() function (for
		showing debug traces).