forked from libssh2/libssh2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sara Golemon
committed
Dec 7, 2004
0 parents
commit 7a5ffc8
Showing
23 changed files
with
6,431 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* Copyright (c) 2004, Sara Golemon <[email protected]> | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, | ||
* with or without modification, are permitted provided | ||
* that the following conditions are met: | ||
* | ||
* Redistributions of source code must retain the above | ||
* copyright notice, this list of conditions and the | ||
* following disclaimer. | ||
* | ||
* Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials | ||
* provided with the distribution. | ||
* | ||
* Neither the name of the copyright holder nor the names | ||
* of any other contributors may be used to endorse or | ||
* promote products derived from this software without | ||
* specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND | ||
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, | ||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE | ||
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY | ||
* OF SUCH DAMAGE. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
subdirs = src/ | ||
top_srcdir = @top_srcdir@ | ||
prefix = @prefix@ | ||
exec_prefix = @exec_prefix@ | ||
libdir = @exec_prefix@/lib | ||
incldir = @prefix@/include | ||
distdir = @top_srcdir@/dist | ||
|
||
CC = @CC@ | ||
CFLAGS = -c @CFLAGS@ -Iinclude/ -Wall -g | ||
LIBS = -lssh2 -Lsrc/ | ||
INSTALL = @INSTALL@ | ||
VERSION=0.1-dev | ||
DISTLIB=libssh2-$(VERSION) | ||
|
||
all: | ||
@for dir in ${subdirs}; do \ | ||
(cd $$dir && $(MAKE) all) \ | ||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \ | ||
done && test -z "$$fail" | ||
$(CC) -o ssh2_sample.o ssh2_sample.c $(CFLAGS) | ||
$(CC) -o ssh2_sample ssh2_sample.o $(LIBS) | ||
install: | ||
$(top_srcdir)/mkinstalldirs $(incldir) | ||
$(top_srcdir)/mkinstalldirs $(libdir) | ||
@for dir in ${subdirs}; do \ | ||
(cd $$dir && $(MAKE) install) \ | ||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \ | ||
done && test -z "$$fail" | ||
$(INSTALL) -m 644 include/libssh2.h $(incldir)/ | ||
clean: | ||
@for dir in ${subdirs}; do \ | ||
(cd $$dir && $(MAKE) clean) \ | ||
|| case "$(MFLAGS)" in *k*) fail=yes;; *) exit 1;; esac; \ | ||
done && test -z "$$fail" | ||
rm -f ssh2_sample.o ssh2_sample | ||
dist: | ||
autoheader | ||
autoconf | ||
rm -f $(DISTLIB) | ||
ln -s . $(DISTLIB) | ||
tar -zcf $(DISTLIB).tar.gz \ | ||
$(DISTLIB)/configure.in $(DISTLIB)/configure $(DISTLIB)/Makefile.in $(DISTLIB)/ssh2_sample.c \ | ||
$(DISTLIB)/LICENSE $(DISTLIB)/README $(DISTLIB)/TODO \ | ||
$(DISTLIB)/mkinstalldirs $(DISTLIB)/install-sh \ | ||
$(DISTLIB)/src/*.c $(DISTLIB)/src/Makefile.in \ | ||
$(DISTLIB)/include/libssh2.h $(DISTLIB)/include/libssh2_priv.h $(DISTLIB)/include/libssh2_config.h.in | ||
rm -f $(DISTLIB) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
libssh2 - SSH2 library | ||
====================== | ||
|
||
Version 0.1-dev | ||
--------------- | ||
|
||
Initial Release: | ||
KEX methods: diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha1, diffie-hellman-group1-sha1 | ||
Hostkey methods: ssh-rsa, ssh-dss | ||
Cipher methods: aes256-cbc, [email protected], aes192-cbc, aes128-cbc, blowfish-cbc, arcfour, cast128-cbc, 3des-cbc, none* | ||
Compression methods: zlib, none | ||
MAC methods: hmac-sha1, hmac-sha1-96, hmac-ripemd160, [email protected] none* | ||
*Cipher/MAC "none" is disabled by default for security purposes, | ||
Use --enable-crypt-none and/or --enable-mac-none with ./configure to enable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
* More Crypt Methods | ||
* hmac-md5, hmac-md5-96 | ||
* SFTP support | ||
* Review callbacks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
# AC_PREREQ(2.57) | ||
AC_INIT(libssh2, 0.1 , [email protected]) | ||
AC_CONFIG_SRCDIR([src]) | ||
AC_CONFIG_HEADER([include/libssh2_config.h]) | ||
|
||
SHLIB_SUFFIX_NAME="so" | ||
SHLIB_LDFLAGS="-shared" | ||
|
||
AC_SUBST(SHLIB_SUFFIX_NAME) | ||
AC_SUBST(SHLIB_LDFLAGS) | ||
|
||
AC_PROG_CC | ||
AC_PROG_INSTALL | ||
AC_PROG_LN_S | ||
AC_PROG_MAKE_SET | ||
AC_PROG_RANLIB | ||
AC_C_BIGENDIAN | ||
if test -z "$PKG_CONFIG"; then | ||
AC_PATH_PROG(PKG_CONFIG, pkg-config, no) | ||
fi | ||
|
||
# | ||
# Look for OpenSSL | ||
# | ||
AC_ARG_WITH(openssl, | ||
AC_HELP_STRING([--with-openssl=DIR],[Look for OpenSSL in PATH]), | ||
[LIBSSH2_OPENSSL_DIR=$withval],[LIBSSH2_OPENSSL_DIR=yes]) | ||
|
||
if test "$LIBSSH2_OPENSSL_DIR" = "no" || test "$LIBSSH2_OPENSSL_DIR" = "yes"; then | ||
unset LIBSSH2_OPENSSL_DIR | ||
fi | ||
|
||
found_openssl=no | ||
unset OPENSSL_INCDIR | ||
unset OPENSSL_LIBDIR | ||
|
||
AC_MSG_CHECKING([for OpenSSL]) | ||
|
||
# Explicit path given, use it rather than pkg-config | ||
if test ! -z "$LIBSSH2_OPENSSL_DIR"; then | ||
found_openssl=yes | ||
OPENSSL_LIBDIR=$LIBSSH2_OPENSSL_DIR/lib | ||
OPENSSL_INCDIR=$LIBSSH2_OPENSSL_DIR/include | ||
AC_MSG_RESULT([Using explicit path $LIBSSH2_OPENSSL_DIR]) | ||
fi | ||
|
||
# If pkg-config is found try using it | ||
if test "$found_openssl" = "no" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then | ||
found_openssl=yes | ||
OPENSSL_LIBDIR=`$PKG_CONFIG --libs openssl` | ||
OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` | ||
AC_MSG_RESULT([Using paths from pkg-config]) | ||
fi | ||
|
||
# Elsewise, search for OpenSSL wherever it might be | ||
if test "$found_openssl" = "no"; then | ||
OPENSSL_SEARCH_PATH="/usr/local/ssl /usr/local /usr /usr/local/openssl" | ||
|
||
for i in $OPENSSL_SEARCH_PATH; do | ||
if test -r $i/include/openssl/evp.h; then | ||
OPENSSL_INCDIR=$i/include | ||
fi | ||
if test -r $i/include/openssl/hmac.h; then | ||
OPENSSL_INCDIR=$i/include | ||
fi | ||
if test -r $i/lib/libcrypto.a -o -r $i/lib/libcrypto.$SHLIB_SUFFIX_NAME; then | ||
OPENSSL_LIBDIR=$i/lib | ||
fi | ||
test -n "$OPENSSL_INCDIR" && test -n "$OPENSSL_LIBDIR" && break | ||
done | ||
|
||
if test -z "$OPENSSL_INCDIR"; then | ||
AC_MSG_ERROR([Cannot find OpenSSL's <evp.h> or <hmac.h>]) | ||
fi | ||
|
||
if test -z "$OPENSSL_LIBDIR"; then | ||
AC_MSG_ERROR([Cannot find OpenSSL's libcrypto]) | ||
fi | ||
|
||
AC_MSG_RESULT([$OPENSSL_INCDIR $OPENSSL_LIBDIR]) | ||
fi | ||
|
||
# | ||
# Confirm required OpenSSL libs | ||
# | ||
if test ! -r $OPENSSL_INCDIR/openssl/bn.h || test ! -r $OPENSSL_INCDIR/openssl/evp.h || \ | ||
test ! -r $OPENSSL_INCDIR/openssl/hmac.h || test ! -r $OPENSSL_INCDIR/openssl/pem.h || \ | ||
test ! -r $OPENSSL_INCDIR/openssl/sha.h; then | ||
AC_MSG_ERROR([Missing one or more of <openssl/bn.h>, <openssl/evp.h>, <openssl/hmac.h>, <openssl/pem.h>, <openssl/sha.h>]) | ||
fi | ||
|
||
CFLAGS="$CFLAGS -I$OPENSSL_INCDIR" | ||
LDFLAGS="$LDFLAGS -L$OPENSSL_LIBDIR -lcrypto" | ||
|
||
# | ||
# zlib | ||
# | ||
AC_ARG_WITH(libz, | ||
AC_HELP_STRING([--with-libz=PATH],[Look for libz in PATH]), | ||
[LIBSSH2_LIBZ_DIR=$withval],[LIBSSH2_LIBZ_DIR="/usr/local /usr /usr/local/libz /usr/libz /usr/local/zlib /usr/zlib"]) | ||
|
||
if test "$LIBSSH2_LIBZ_DIR" = "no" || test "$LIBSSH2_LIBZ_DIR" = "yes"; then | ||
unset LIBSSH2_LIBZ_DIR | ||
fi | ||
|
||
unset LIBZ_INCDIR | ||
unset LIBZ_LIBDIR | ||
|
||
AC_MSG_CHECKING([for libz]) | ||
|
||
for i in $LIBSSH2_LIBZ_DIR; do | ||
if test -r $i/include/zlib.h; then | ||
LIBZ_INCDIR=$i/include | ||
fi | ||
if test -r $i/lib/libz.a -o -r $i/lib/libz.$SHLIB_SUFFIX_NAME; then | ||
LIBZ_LIBDIR=$i/lib | ||
fi | ||
test -n "$LIBZ_INCDIR" && test -n "$LIBZ_LIBDIR" && break | ||
done | ||
|
||
if test -n "$LIBZ_INCDIR" && test -n "$LIBZ_LIBDIR"; then | ||
AC_MSG_RESULT([Found in $LIBZ_INCDIR $LIBZ_LIBDIR]) | ||
CFLAGS="$CFLAGS -I$LIBZ_INCDIR" | ||
LDFLAGS="$LDFLAGS -L$LIBZ_LIBDIR -lz" | ||
AC_DEFINE(LIBSSH2_HAVE_ZLIB, 1, [Compile in zlib support]) | ||
else | ||
AC_MSG_RESULT([Cannot find libz's <zlib.h>]) | ||
fi | ||
|
||
# | ||
# Optional Settings | ||
# | ||
AC_ARG_ENABLE(crypt-none, | ||
AC_HELP_STRING([--enable-crypt-none],[Permit "none" cipher -- NOT RECOMMENDED]), | ||
[AC_DEFINE(LIBSSH2_CRYPT_NONE, 1, [Enable "none" cipher -- NOT RECOMMENDED])]) | ||
|
||
AC_ARG_ENABLE(mac-none, | ||
AC_HELP_STRING([--enable-mac-none],[Permit "none" MAC -- NOT RECOMMENDED]), | ||
[AC_DEFINE(LIBSSH2_MAC_NONE, 1, [Enable "none" MAC -- NOT RECOMMENDED])]) | ||
|
||
# Checks for header files. | ||
# AC_HEADER_STDC | ||
AC_CHECK_HEADERS([errno.h fcntl.h stdio.h stdlib.h unistd.h]) | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_CONST | ||
|
||
AC_CONFIG_FILES([Makefile | ||
src/Makefile]) | ||
AC_OUTPUT |
Oops, something went wrong.