search for: lrsaref

Displaying 12 results from an estimated 12 matches for "lrsaref".

Did you mean: rsaref
2000 Mar 22
0
configure: error: *** zlib missing
...l 2>&1; \ fi cd .../archive/OpenSSH/solaris/1.2.2p1 ./configure checking for OpenSSL/SSLeay directory... configure: error: Could not find working SSLeay / OpenSSL libraries, please install LDFLAGS="-L/usr/local/ssl/lib" \ CFLAGS="-I/usr/local/ssl/include" \ LIBS="-lRSAref -lRSAglue" ./configure <or> LDFLAGS="-L/usr/local/ssl/lib -L/usr/local/lib" \ CFLAGS="-I/usr/local/ssl/include" \ LIBS="-lRSAref -lRSAglue" ./configure configure: error: *** zlib missing - please install first *** LDFLAGS="-L/usr/local/ssl/lib -L/usr/l...
2001 Jun 06
1
configure patch for Alpha/Tru64 Unix 5.1
...; if test ! -z "$no_rsa" ; then AC_MSG_RESULT(disabled) @@ -698,7 +699,7 @@ else RSA_MSG="yes (using RSAref)" AC_MSG_RESULT(using RSAref) - LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + LIBS="$LIBS -lcrypto -lRSAglue -lrsaref" fi fi fi -- ##> Petter Reinholdtsen <## | pere at td.org.uit.no O- <SCRIPT Language="Javascript">window.close()</SCRIPT> http://www.hungry.com/~pere/ | Go...
2001 Aug 18
0
installing openssh-2.9p2 after openssl-0.9.6b on freebsd-4.3-RELEASE
...ile Sat Aug 18 21:12:53 2001 --- openssh-2.9p2/Makefile Sat Aug 18 21:34:12 2001 *************** *** 27,43 **** CC=gcc LD=gcc CFLAGS=-O -pipe -Wall -I/l/ssl/include ! CPPFLAGS=-I. -I$(srcdir) $(PATHS) -DHAVE_CONFIG_H ! # -ino: Sat-18.08.01-21:02 ! #LIBS=-lwrap -lz -lutil -lcrypto -lRSAglue -lrsaref -lcrypt ! LIBS=-lwrap -lz -lutil -lcrypt -L/l/ssl/lib -lcrypto -lssl -L/l/lib -lrsaref AR=/usr/bin/ar RANLIB=ranlib INSTALL=/usr/bin/install -c PERL=/usr/bin/perl5 ENT= XAUTH_PATH=/usr/X11R6/bin/xauth ! LDFLAGS=-L. -Lopenbsd-compat/ EXEEXT= SSH_MODE= 04711 --- 27,41 ---- CC=...
2001 Feb 13
1
configure.in reorder patch
...453,7 @@ fi fi fi -LIBS="$saved_LIBS -lcrypto" +LIBS="-lcrypto $saved_LIBS" # Now test RSA support saved_LIBS="$LIBS" @@ -514,7 +462,7 @@ if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS" else - LIBS="$saved_LIBS -lRSAglue -lrsaref" + LIBS="-lRSAglue -lrsaref $saved_LIBS" fi AC_TRY_RUN([ #include <string.h> @@ -552,7 +500,7 @@ else RSA_MSG="yes (using RSAref)" AC_MSG_RESULT(using RSAref) - LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + LIBS="-lcrypto -lRSAgl...
2000 Aug 15
0
[PATCH]: Port to Mac OS X/Darwin, misc
...ypto" fi -LIBS="$saved_LIBS -lcrypto" +LIBS="$saved_LIBS $LIBCRYPTO" # Now test RSA support saved_LIBS="$LIBS" @@ -432,7 +448,7 @@ else RSA_MSG="yes (using RSAref)" AC_MSG_RESULT(using RSAref) - LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + LIBS="$saved_LIBS $LIBCRYPTO -lRSAglue -lrsaref" fi fi fi Index: Services/OpenSSH/openssh/uidswap.c diff -u Services/OpenSSH/openssh/uidswap.c:1.1.1.3 Services/OpenSSH/openssh/uidswap.c:1.3 --- Services/OpenSSH/openssh/uidswap.c:1.1.1.3 Wed Jul 12 20:13:17 2000 +++ Servi...
2002 Apr 03
2
cross compilation?
...0, sizeof(a)); + RAND_add(a, sizeof(a), sizeof(a)); + return(RAND_status() <= 0); ], [ found_crypto=1 break; - ], [] + ], [ ] ) if test ! -z "$found_crypto" ; then @@ -800,26 +791,26 @@ else LIBS="$saved_LIBS -lRSAglue -lrsaref" fi - AC_TRY_RUN([ -#include <string.h> -#include <openssl/rand.h> -#include <openssl/rsa.h> -#include <openssl/bn.h> -#include <openssl/sha.h> -int main(void) -{ - int num; RSA *key; static unsigned char p_in[] = "blahblah"; - unsigned char c[256],...
2000 May 10
4
openssl w/ rsaref openssh won't configure
...ll) but then goes on to fail at RSA_private_decrypt. Like I said, the openssl tests passed.... AnyHELP? conftest.c generated by configure: --------- gcc -o conftest -g -O2 -Wall -I/opt/openssl/include -L/opt/openssl/lib -L/opt/openssl conftest.c -ldl -lnsl -lz -lutil -lpam -lcrypto -lRSAglue -lrsaref 1>&5 configure: failed program was: #line 2032 "configure" #include "confdefs.h" #include <string.h> #include <openssl/rand.h> #include <openssl/rsa.h> #include <openssl/bn.h> #include <openssl/sha.h> int main(void) { RSA *key; char...
2000 May 31
0
openssh 2.1.0p3 w/ rsaref
...Cheers, Nalin -------------- next part -------------- --- openssh-2.1.0p3/configure.in Wed May 31 08:56:52 2000 +++ openssh-2.1.0p3/configure.in Wed May 31 09:03:49 2000 @@ -231,7 +231,27 @@ [ found_crypto=1 break; - ], [] + ], + [ + LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" + AC_TRY_RUN( + [ + #include <string.h> + #include <openssl/rand.h> + int main(void) + { + char a[2048]; + memset(a, 0, sizeof(a)); + RAND_add(a, sizeof(a), sizeof(a)); + return(RAND_status() <= 0); + } + ], + [ + found_crypto=1 +...
2000 Jul 14
2
Still a problem with openssh and rsaref
...pto 1>&5 /usr/bin/../lib/libcrypto.so: undefined reference to `ERR_load_RSAREF_strings' /usr/bin/../lib/libcrypto.so: undefined reference to `RSA_PKCS1_RSAref' so why doesn't it seem to use my --with-ssl-dir, which points to /usr/lib, also the test isn't including -lRSAglue -lrsaref. I see that there has been problems with this in past versions of openssh, but I didn't see anything that applies to 2.1.1p3. Thanks for any help. -jeremy -- http://www.xxedgexx.com | jeremy at xxedgexx.com ---------------------------------------------
2000 Aug 06
1
problems compiling sshd on slackware 7.x
...hecking for OpenSSL directory... (cached) /usr/local/ssl checking for RSA support... configure: warning: *** No RSA support found *** ... Compiler flags: -g -O2 -Wall -I/usr/local/ssl/include Linker flags: -L/usr/local/ssl/lib -L/usr/local/ssl Libraries: -lnsl -lz yes -lutil -lcrypto -lRSAglue -lrsaref and strangely complains about snprintf and wants to enable this rsaref thingy. I also tried --with-ldflags but couldn't specify a '-lcrypt' because configure recognizes this as an to its unknown option. hm. BTW: ./configure --help | grep ldlags (typo!) only supplying 'lcrypt&...
1999 Dec 28
0
Patches to report rsaref build and to call pam_setcred
...ime. */ +#undef RSAREF + /* Define is utmp.h has a ut_host field */ #undef HAVE_HOST_IN_UTMP diff -uNr configure.in configure.in --- configure.in Sat Dec 25 18:21:48 1999 +++ configure.in Mon Dec 27 10:45:09 1999 @@ -89,7 +89,8 @@ saved_LIBS="$LIBS" LIBS="$saved_LIBS -lRSAglue -lrsaref" AC_TRY_LINK([], [], -[AC_MSG_RESULT(yes); ], +[AC_MSG_RESULT(yes); + AC_DEFINE(RSAREF)], [AC_MSG_RESULT(no)]; LIBS="$saved_LIBS") dnl Checks for libraries. diff -uNr ssh.c ssh.c --- ssh.c Mon Dec 13 18:47:16 1999 +++ ssh.c Mon Dec 27 10:48:43 1999 @@ -305,7 +305,11 @@ case &...
2000 Mar 17
2
Problem with 1.2.3pre4 and RSAref
...s on the system (which breaks OpenSSL): for WANTS_RSAREF in "" 1 ; do if test -z "$WANTS_RSAREF" ; then LIBS="$saved_LIBS -lcrypto" else LIBS="$saved_LIBS -lcrypto -lRSAglue -lrsaref" fi .... It appears that the code referenced in configure just before line 1950 works correctly even without the RSAglue and rsaref libraries, but "in production" work fails needing "_RSAPrivateDecrypt". If someone wants to run a patch by me on this one, I...