Go to file
Daniel Stenberg 02e5b3b423 LIBSSH2_APINO is now gone, the sooner the better. This is gonna cause some
pains in apps relying on it, but it is broken by design and we should not
rely on it at all. Go for the LIBSSH2_VERSION_* defines instead if you need
to check for versions.
2007-08-03 08:05:36 +00:00
docs Change the wording of the return value to match the rest of the man pages 2007-07-04 10:44:40 +00:00
example The examples no longer have an include path pointing to the private source dir 2007-07-31 11:00:29 +00:00
include LIBSSH2_APINO is now gone, the sooner the better. This is gonna cause some 2007-08-03 08:05:36 +00:00
m4 Use Bruno's M4 macros to search for libgcrypt. 2007-04-05 10:23:54 +00:00
nw changed prelude file for gcc build. 2007-07-22 00:47:21 +00:00
src libssh2_poll() no longer relies on C99 features but instead uses alloca() 2007-07-23 21:18:43 +00:00
tests Remove -no-install since it breaks Darwin builds (probably a libtool 2007-03-27 15:35:37 +00:00
win32 added var to specify cross compiler prefix. 2007-07-21 22:59:24 +00:00
.cvsignore *** empty log message *** 2007-04-05 10:21:09 +00:00
.cvsusers I'm fine with just name 2007-07-14 23:33:21 +00:00
acinclude.m4 Peter O'Gorman pointed out (and fixed) that the non-blocking check in 2007-07-30 22:55:43 +00:00
AUTHORS Add me 2007-06-15 10:08:33 +00:00
buildconf create a private config.h file for the examples 2007-07-31 10:04:24 +00:00
config.rpath Use Bruno's M4 macros to search for libgcrypt. 2007-04-05 10:23:54 +00:00
configure.in add large file magic checks, and make sure we update the config.h file in the 2007-07-31 10:04:57 +00:00
COPYING Add, from LICENSE. 2007-03-27 12:24:35 +00:00
get_ver.awk fixed space detection 2007-06-13 22:20:13 +00:00
HACKING Metion the current code style in the new file called HACKING. In this, we 2007-07-14 21:28:02 +00:00
Makefile.am added NMakefile to Makefile.am so that it gets included with releases and daily snapshots. 2007-07-17 13:22:55 +00:00
maketgz Added LIBSSH2_TIMESTAMP to the public header and it contains the timestamp of 2007-07-15 21:36:29 +00:00
NEWS Created libssh2_sftp_readdir_ex() and updated LIBSSH2_APINO to 200706151200 2007-06-15 17:22:49 +00:00
NMakefile fixed NMakefile stuff to build at least the DLL again. 2007-07-15 20:06:19 +00:00
README added --enable-debug 2007-04-12 21:40:22 +00:00

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

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

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
	* --with-libgcrypt-prefix=DIR

		libssh2 can use the Libgcrypt library
		(http://www.gnupg.org/) for cryptographic operations.

		Configure will attempt to locate Libgcrypt in the
		default location, but if you have installed it
		somewhere else, use the --with-libgrypt-prefix=DIR
		parameter.

	* --with-openssl=[DIR]

		libssh2 can use the OpenSSL library
		(http://www.openssl.org) for cryptographic operations.

		Configure will attempt to locate OpenSSL in a number
		of default locations:

			/usr/local/ssl
			/usr/local
			/usr
			/usr/local/openssl

		If your installation of OpenSSL is in another
		location, specify it here.

	* --with-libz=[DIR]

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

		Configure will attempt to location a zlib installation
		in a number of default locations:

			/usr/local
			/usr
			/usr/local/libz
			/usr/libz
			/usr/local/zlib
			/usr/zlib

		If your installation of zlib is in another location,
		you may specify it here.

	* --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).