similar to: OpenSSL 1.1.0j version checking bug in configure.ac [PATCH]

Displaying 18 results from an estimated 18 matches similar to: "OpenSSL 1.1.0j version checking bug in configure.ac [PATCH]"

2016 Jan 04
2
OPenssl and dependencies such as openssh
This might be a croosmail, but necessary. I did us openssl-SNAP-20160104 minorss erros and installed. I tried openssh-SNAP-20160105 and the OpenSSL libraries cannot be found In the openssh configuration file I see # Determine OpenSSL library version { $as_echo "$as_me:${as_lineno-$LINENO}: checking OpenSSL library versi on" >&5 $as_echo_n "checking
2010 Feb 28
1
Autoconf Quadrigraphs
Charles, Do you know why Debian etch accepts the quadrigraph '@<:@' but not two consecutive ones? Even with a space in between it doesn't work, although a single instance is processed correctly. Best regards, Arjen -- Please keep list traffic on the list
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
Hi folks, here're some quick+dirty fixes to allow sysroot'ed crosscompiling. probably not yet very clean, but seems to work. cu -- --------------------------------------------------------------------- Enrico Weigelt == metux IT service phone: +49 36207 519931 www: http://www.metux.de/ fax: +49 36207 519932 email: contact at metux.de
2018 Nov 08
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
On Mon, 5 Nov 2018, Darren Tucker wrote: > On 5 November 2018 at 16:41, Michael Forney <mforney at mforney.org> wrote: > > > This causes EVP_CIPHER_CTX_set_iv to get replaced unnecessarily (or > > a duplicate symbol error if linking statically). > > > > Applied, thanks. should this go on the V_7_9 branch too? > >
2018 Nov 05
2
[PATCH] Fix configure check for EVP_CIPHER_CTX_set_iv
This causes EVP_CIPHER_CTX_set_iv to get replaced unnecessarily (or a duplicate symbol error if linking statically). --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 10696513..199975fe 100644 --- a/configure.ac +++ b/configure.ac @@ -2865,7 +2865,7 @@ if test "x$openssl" = "xyes" ; then
2017 Jul 21
15
[Bug 2746] New: RFE: Allow to disable SHA1 signatures for RSA
https://bugzilla.mindrot.org/show_bug.cgi?id=2746 Bug ID: 2746 Summary: RFE: Allow to disable SHA1 signatures for RSA Product: Portable OpenSSH Version: 7.5p1 Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: ssh Assignee: unassigned-bugs at
2006 Nov 02
0
[ANNOUNCE] XCB 1.0 release candidate 3 now available
The XCB developers proudly announce the 1.0 RC3 (0.9.93) release of xcb-proto and libxcb, now available from: <http://xcb.freedesktop.org/dist/xcb-proto-0.9.93.tar.bz2> with sha1sum: c3a0a5ecc6c602c948d164b186967eb715e872e6 <http://xcb.freedesktop.org/dist/xcb-proto-0.9.93.tar.gz> with sha1sum: 59f4963abb1772d179f0f299c46a9ee2eb259884
2016 Dec 26
4
AD DC as KVM guest on file server host?
The most dramatic disadventage of kvm guest is block device I/O, so I wouldn't recommend to virtualize file server if it is not necessary. In my case on host ntpd configured as source for virtual dc, and bind9 configured as type=slave for zones hosted on dc, (make shure that srv records in _msdcs.mysambadomain.local are resolving when virtual dc is down) and smbd fileserver with
2008 Nov 19
7
[Bug 1538] New: improve SSP detection
https://bugzilla.mindrot.org/show_bug.cgi?id=1538 Summary: improve SSP detection Product: Portable OpenSSH Version: 5.1p1 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Build system AssignedTo: unassigned-bugs at mindrot.org ReportedBy: vapier at
2016 Dec 29
1
AD DC as KVM guest on file server host?
29.12.2016 19:01, Filippe LeMarchand пишет: > Is kvm I/O realy disadventage? I use samba file server as kvm guest > (LVM storage pool) in some setups and disn't notice any problems. > Sequential read/write speed isn't noticeably different from > non-virtualized samba host. Did I miss something and should expect > sudden trouble? No you shouldn't. What I meant is: of
2019 Jan 17
3
[patch 1/2] use chacha20 from openssl (1.1.0+) when possible
On some cpu's optimized chacha implementation in openssl (1.1.0+) is notably faster (and on others it is just faster) than generic C implementation in openssh. Sadly, openssl's chacha20-poly1305 (EVP_chacha20_poly1305) uses different scheme (with padding/etc - see rfc8439) and it looks it is not possible to use in openssh. OpenSSL 1.1.1+ also exports "raw" poly1305 primitive,
2020 Jan 16
3
[patch 1/2] use chacha20 from openssl (1.1.0+) when possible
On Fri, 2019-07-12 at 15:54 +1000, Damien Miller wrote: > On Thu, 17 Jan 2019, Yuriy M. Kaminskiy wrote: > > > On some cpu's optimized chacha implementation in openssl (1.1.0+) > > is > > notably faster (and on others it is just faster) than generic C > > implementation in openssh. > > > > Sadly, openssl's chacha20-poly1305
2019 Feb 17
3
[PATCH] use ecdh/X25519 from openssl when possible (openssl-1.1.0+)
See attached: (1) patch against 7.9p1, tested with openssl 1.1.0j and openssl 1.1.1a on linux/i386; passes regression test and connects to unpatched sshd without problems; I hacked a bit regress/unittests/kex, and benchmarked do_kex_with_key("curve25519-sha256 at libssh.org", KEY_ED25519, 256); Before: 0.3295s per call After: 0.2183s per call That is, 50% speedup; assuming
2010 Sep 12
2
using xen tools with python2.6
there are at least some syntax errors when trying to use the xen utils with python2.6. The attached patch changes these string exception into ValueError's. - tools/python/xen/util/bugtool.py (getBugTitle) - tools/python/xen/xend (class XendBase): not catched - tools/python/xen/xm/xenapi_create.py (sxp2xmlconvert_sxp_to_xml): the method already raises a ValueError for similiar
2010 Sep 12
2
using xen tools with python2.6
there are at least some syntax errors when trying to use the xen utils with python2.6. The attached patch changes these string exception into ValueError's. - tools/python/xen/util/bugtool.py (getBugTitle) - tools/python/xen/xend (class XendBase): not catched - tools/python/xen/xm/xenapi_create.py (sxp2xmlconvert_sxp_to_xml): the method already raises a ValueError for similiar
2019 Oct 11
3
Error: SSL_accept() syscall failed
In setting up my new mail server, I am getting the following in the logs: Oct 11 07:10:59 kumo dovecot[5704]: imap-login: Disconnected (no auth attempts in 0 secs): user=<>, rip=24.53.79.10, lip=172.26.12.90, *TLS handshaking: SSL_accept() syscall failed: Success*, session=<B9OokqCUD+UYNU8K> I have tried various ssl_protocols entries, but for now have defaulted back to
2019 Mar 27
26
Call for testing: OpenSSH 8.0
Hi, OpenSSH 8.0p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is also available via git using the instructions at
2016 Dec 29
0
AD DC as KVM guest on file server host?
Is kvm I/O realy disadventage? I use samba file server as kvm guest (LVM storage pool) in some setups and disn't notice any problems. Sequential read/write speed isn't noticeably different from non-virtualized samba host. Did I miss something and should expect sudden trouble? In a letter dated Tuesday, December 27, 2016 2:12:59 MSK by Andrei Petrov via samba wrote: > The most dramatic