search for: rand_egd

Displaying 7 results from an estimated 7 matches for "rand_egd".

Did you mean: rand_add
2016 Oct 06
0
Python and LibreSSL Patch
...st (not production) machines where openssl has been removed. Discovered some issues with Python built again LibreSSL - it passes the test suite in %check if you just change the BuildRequires but the result is some modules have some unresolved symbols the test suite oddly didn't catch (e.g. RAND_egd and some sslv3 stuff) http://awel.domblogger.net/7/purelibre/Python-2.7.5-rhel7-libressl.patch.txt That patch takes care of all of those (I think) as well as fixing the test suite - which fails after fixing python for the unresolved symbols unless disabling the checks that simply won't work...
2003 Oct 28
4
Failed to compile Samba with SSL
...ix.c Compiling smbd/oplock_linux.c Compiling smbd/notify.c Compiling smbd/notify_hash.c Compiling smbd/notify_kernel.c Linking bin/smbd smbd/ssl.o: In function `sslutil_init': smbd/ssl.o(.text+0x2a5): undefined reference to `SSL_library_init' smbd/ssl.o(.text+0x2bb): undefined reference to `RAND_egd' smbd/ssl.o(.text+0x42b): undefined reference to `SSL_CTX_use_certificate_chain_file' smbd/ssl.o(.text+0x5f4): undefined reference to `SSL_CTX_set_tmp_rsa_callback' collect2: ld returned 1 exit status make: *** [bin/smbd] Error 1
2000 Mar 07
2
rsaref usage
...hutdown' s_socket.o: In function `nbio_init_client_ip': s_socket.o(.text+0x6c): undefined reference to `socket' s_socket.o(.text+0xa4): undefined reference to `setsockopt' s_socket.o(.text+0xf4): undefined reference to `connect' s_socket.o: In function `init_server': [...] rand_egd.o(.text+0x78): undefined reference to `connect' ../libcrypto.a(err_all.o): In function `ERR_load_crypto_strings': err_all.o(.text+0x40): undefined reference to `ERR_load_RSAREF_strings' *** Error code 1 make: Fatal error: Command failed for target `openssl' Current working directory...
2002 Jan 22
4
ssh-rand-helper
Now that ssh-rand-helper has been segregated into a separate program, I'd like to revisit an old question about its entropy gathering. - would it be desirable to make it possible for ssh-rand-helper to fall back to external commands if PRNGD cannot be reached, instead of choosing one or the other at compile time? - When using PRNGD, the program gets 48 bytes of entropy from PRNGD,
2010 Feb 18
4
"../openbsd-compat/port-aix.h", line 92.44: 1506-046 (S) Syntax error. openssh-5.3p1 on aix 5.3
Hi all, Environment: Compiler: IBM XL C/C++ Enterprise Edition for AIX v9.0 Server: AIX 5.3 TL 10 SP1 I use configure with the following option to configure the makefile. --------------------------------? export CC=cc export CFLAGS="-I/opt/freeware/include/openssl/ -I/usr/local/include" export LDFLAGS="-L/opt/freeware/lib/ -L/usr/local/lib" ./configure --prefix=/usr/local
2003 Apr 20
1
log of build of 2.2.8a on Solaris9 using SUN's studio7 cc.
...ib/util_unistr.c Compiling lib/util_file.c Compiling lib/util.c "lib/util.c", line 62: warning: initializer does not fit or is out of range: -1 Compiling lib/util_sock.c Compiling lib/util_sec.c Compiling smbd/ssl.c "smbd/ssl.c", line 100: warning: implicit function declaration: RAND_egd "smbd/ssl.c", line 104: warning: implicit function declaration: RAND_load_file Compiling lib/talloc.c Compiling lib/hash.c Compiling lib/substitute.c Compiling lib/fsusage.c Compiling lib/ms_fnmatch.c Compiling lib/select.c Compiling lib/error.c Compiling lib/messages.c Compiling lib/pam_...
2003 Dec 01
0
No subject
...-int err; +int err, entropybytes; char *certfile, *keyfile, *ciphers, *cacertDir, *cacertFile; +char *egdsocket, *entropyfile; SSL_load_error_strings(); SSLeay_add_ssl_algorithms(); + egdsocket = lp_ssl_egdsocket(); + if (egdsocket != NULL && *egdsocket != 0) + RAND_egd(egdsocket); + entropyfile = lp_ssl_entropyfile(); + entropybytes = lp_ssl_entropybytes(); + if (entropyfile != NULL && *entropyfile != 0) + RAND_load_file(entropyfile, entropybytes); switch(lp_ssl_version()){ case SMB_SSL_V2: sslContext = SSL_CTX_new(SSLv2_method()...