Go to file
Guenter Knauf 7c32c84d0e removed conditional sources from Makefile.inc
added ifdef blocks to libgcrypt.c, pem.c, openssl.c
2009-09-07 18:10:49 +02:00
docs some more .cvsignore / .gitignore fixes. 2009-09-04 02:23:28 +02:00
example added sys/select.h include to samples for fd_set on NetWare. 2009-09-06 06:15:29 +02:00
include libssh2_version() exists since 1.1 2009-09-02 22:39:48 +02:00
m4 Ignore generated files 2009-06-04 18:20:29 +02:00
nw some more NetWare build fixes. 2009-09-06 06:57:55 +02:00
src removed conditional sources from Makefile.inc 2009-09-07 18:10:49 +02:00
tests some more .cvsignore / .gitignore fixes. 2009-09-04 02:23:28 +02:00
win32 renamed .cvsignore to .gitignore. 2009-09-04 02:12:50 +02:00
.gitignore Ignore generated files 2009-06-04 18:20:29 +02:00
acinclude.m4 Add check for and use of the _REENTRANT define for Solaris so that libssh2 2009-06-04 20:23:23 +02:00
AUTHORS added contributors from the 1.2 release notes 2009-08-11 10:11:11 +02:00
buildconf From: Steven Van Ingelgem <steven@vaningelgem.be> 2009-07-17 23:38:41 +02:00
config.rpath Use Bruno's M4 macros to search for libgcrypt. 2007-04-05 10:23:54 +00:00
configure.ac generate and install libssh2.pc 2009-09-01 10:04:13 +02:00
COPYING add myself as copyright owner 2009-05-25 11:35:06 +02:00
get_ver.awk fixed space detection 2007-06-13 22:20:13 +00:00
HACKING always braces and else and brace on the same line removed 2009-09-01 09:42:33 +02: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 first take at producing and installing a pkg-config file 2009-09-01 09:55:25 +02:00
Makefile.am generate and install libssh2.pc 2009-09-01 10:04:13 +02:00
Makefile.inc removed conditional sources from Makefile.inc 2009-09-07 18:10:49 +02:00
maketgz Added LIBSSH2_TIMESTAMP to the public header and it contains the timestamp of 2007-07-15 21:36:29 +00:00
NEWS linked list changes and minor bug fixes 2009-08-20 01:03:40 +02:00
NMakefile fixed NMakefile stuff to build at least the DLL again. 2007-07-15 20:06:19 +00:00
README Update mailing list URL to new address 2009-07-10 20:11:29 +02:00
RELEASE-NOTES start working on 1.2.1 2009-08-10 22:58:15 +02:00
TODO linked list code is now converted to new functions 2009-08-20 01:00:54 +02: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).