RE: Worried about the vulnerabilities recently found in OpenSSL versions 3.0.0 - 3.0.6.

2022-11-03 Thread Michael Wojcik via openssl-users
> From: openssl-users On Behalf Of > Steven_M.irc via openssl-users > Sent: Wednesday, 2 November, 2022 17:18 > > I'm really worried about the vulnerabilities recently found in OpenSSL > versions 3.0.0 - 3.0.6. Why? What's your threat model? > If I understand

Re: Worried about the vulnerabilities recently found in OpenSSL versions 3.0.0 - 3.0.6.

2022-11-02 Thread Viktor Dukhovni
On Wed, Nov 02, 2022 at 11:17:31PM +, Steven_M.irc via openssl-users wrote: > I'm really worried about the vulnerabilities recently found in OpenSSL > versions 3.0.0 - 3.0.6. Just upgrade any affected systems and you'll be fine. > If I understand things correctly (and p

Worried about the vulnerabilities recently found in OpenSSL versions 3.0.0 - 3.0.6.

2022-11-02 Thread Steven_M.irc via openssl-users
Hi All, I'm really worried about the vulnerabilities recently found in OpenSSL versions 3.0.0 - 3.0.6. If I understand things correctly (and please do correct me if I'm wrong), it doesn't matter which version of OpenSSL clients are running, only which version of OpenSSL *serve

Best practice for distributions that freeze OpenSSL versions and backports

2021-06-08 Thread Jakob Bohm via openssl-users
Dear team, It would be nice if there was a user- and security-friendly best practice document for distributions (such as Linux distributions) that freeze on an OpenSSL release version (such as 1.1.1z) and then backport any important fixes. Perhaps something like the following: 1. The distri

Re: [openssl-users] Compatibility between different openssl versions

2017-11-27 Thread Sanjaya Joshi
Hi, Thank you Salz Rich. It's clear now. Regards, Sanjaya On Mon, Nov 27, 2017 at 6:42 PM, Salz, Rich via openssl-users < openssl-users@openssl.org> wrote: > >- Whether openssl 1.0.x and 1.1.x can interwork ? > > > > Yup. As long as they share a TLS version, no problem. > > -- > openssl-use

Re: [openssl-users] Compatibility between different openssl versions

2017-11-27 Thread Salz, Rich via openssl-users
* Whether openssl 1.0.x and 1.1.x can interwork ? Yup. As long as they share a TLS version, no problem. -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] Compatibility between different openssl versions

2017-11-27 Thread Sanjaya Joshi
Thank you for the confirmation Matt. Regards, Sanjaya On Mon, Nov 27, 2017 at 3:50 PM, Matt Caswell wrote: > > > On 27/11/17 08:47, Sanjaya Joshi wrote: > > Hello, > > Whether openssl 1.0.x and 1.1.x can interwork ? > > That is, whether TLS client on top of openssl 1.1.x and TLS server on > > t

Re: [openssl-users] Compatibility between different openssl versions

2017-11-27 Thread Matt Caswell
On 27/11/17 08:47, Sanjaya Joshi wrote: > Hello, > Whether openssl 1.0.x and 1.1.x can interwork ? > That is, whether TLS client on top of openssl 1.1.x and TLS server on > top of openssl 1.0.x (or vice versa) can interwork efficiently ? Yes - absolutely. Matt -- openssl-users mailing list To

[openssl-users] Compatibility between different openssl versions

2017-11-27 Thread Sanjaya Joshi
Hello, Whether openssl 1.0.x and 1.1.x can interwork ? That is, whether TLS client on top of openssl 1.1.x and TLS server on top of openssl 1.0.x (or vice versa) can interwork efficiently ? Regards, Sanjaya -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/ope

Re: [openssl-users] Query on API availability for openssl versions

2017-10-17 Thread Matt Caswell
On 17/10/17 10:01, Grace Priscilla Jero wrote: > Thank you Matt for the quick response. > For "2," does it mean that every cipher suite can operate in multiple > levels?  > I thought that there were specific set of cipher suites operating in > each of the levels. Not quite. The security levels l

Re: [openssl-users] Query on API availability for openssl versions

2017-10-17 Thread Jakob Bohm
The security levels are simply a classification of the cipher suites by quality.  Typically one would select all ciphers above a certain level. Most cipher suites work with all protocol levels >= a certain level, with SSL2 (dead) and TLS1.3 (future) being exceptions. Selecting something like "TLS

Re: [openssl-users] Query on API availability for openssl versions

2017-10-17 Thread Grace Priscilla Jero
Thank you Matt for the quick response. For "2," does it mean that every cipher suite can operate in multiple levels? I thought that there were specific set of cipher suites operating in each of the levels. Thanks, Grace On Tue, Oct 17, 2017 at 2:25 PM, Matt Caswell wrote: > > > On 17/10/17 09:2

Re: [openssl-users] Query on API availability for openssl versions

2017-10-17 Thread Matt Caswell
On 17/10/17 09:21, Grace Priscilla Jero wrote: > Hi All, > > 1) > The below APIs used to set the maximum and minimum versions are > available in 1.1.0f version of OPENSSL. > >  int SSL_CTX_set_min_proto_version(SSL_CTX *ctx, int version); >  int SSL_CTX_set_max_proto_version(SSL_CTX *ctx, int v

[openssl-users] Query on API availability for openssl versions

2017-10-17 Thread Grace Priscilla Jero
Hi All, 1) The below APIs used to set the maximum and minimum versions are available in 1.1.0f version of OPENSSL. int SSL_CTX_set_min_proto_version(SSL_CTX *ctx, int version); int SSL_CTX_set_max_proto_version(SSL_CTX *ctx, int version); int SSL_set_min_proto_version(SSL *ssl, int version);

Re: X509_verify() failing to verify valid certificate in old OpenSSL versions

2013-11-16 Thread Dimitrios Apostolou
On Fri, 15 Nov 2013, Dr. Stephen Henson wrote: On Fri, Nov 15, 2013, Dimitrios Apostolou wrote: On Fri, 15 Nov 2013, Dr. Stephen Henson wrote: If the certificate contains no useful information then why check it at all other than to make sure it carries the correct public key? I was not sur

Re: X509_verify() failing to verify valid certificate in old OpenSSL versions

2013-11-14 Thread Dimitrios Apostolou
On Thu, 14 Nov 2013, Dr. Stephen Henson wrote: On Thu, Nov 14, 2013, Dimitrios Apostolou wrote: + *) Don't reencode certificate when calculating signature: cache and use + the original encoding instead. This makes signature verification of + some broken encodings work correctly. Can

Re: X509_verify() failing to verify valid certificate in old OpenSSL versions

2013-11-14 Thread Dr. Stephen Henson
On Thu, Nov 14, 2013, Dimitrios Apostolou wrote: > some time now I'm having problems with X509_verify() from > openssl-1.0.0-27.el6_4.2.i686 shipped with latest RHEL 6. The > problem is that a self-signed certificate that I generate and verify > on the server side, fails to verify on the client si

X509_verify() failing to verify valid certificate in old OpenSSL versions

2013-11-14 Thread Dimitrios Apostolou
Hello, some time now I'm having problems with X509_verify() from openssl-1.0.0-27.el6_4.2.i686 shipped with latest RHEL 6. The problem is that a self-signed certificate that I generate and verify on the server side, fails to verify on the client side after the TLS handshake. Since this works

For some openssl versions DES-EDE cipher has IV_len = 8

2013-09-21 Thread AlexeyGoryunov
.9.8y with fips everything works ok. I put some logs in openssl code and I checked that openssl read PEM header and resolve cipher by name from DEK-Info (of course it's obvious, I just double-checked that it works correctly). I compared ciphers parameters which different openssl version

RE: Openssl versions compability

2013-01-23 Thread Eyal Rundstein
unsubscribe openssl-users -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Leonardo Laface de Almeida Sent: Wednesday, January 23, 2013 5:35 PM To: openssl-users@openssl.org Subject: RES: Openssl versions compability

RES: Openssl versions compability

2013-01-23 Thread Leonardo Laface de Almeida
-Mensagem original- De: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] Em nome de Ken Goldman Enviada em: quarta-feira, 23 de janeiro de 2013 13:13 Para: openssl-users@openssl.org Assunto: Re: Openssl versions compability On 1/23/2013 9:51 AM, Jeffrey Walton

Re: Openssl versions compability

2013-01-23 Thread Viktor Dukhovni
On Wed, Jan 23, 2013 at 10:12:36AM -0500, Ken Goldman wrote: > On 1/23/2013 9:51 AM, Jeffrey Walton wrote: > >Binary compatibility can be tricky, and it brings up all the old > >wounds of Microsoft's COM. Are you claiming there is binary > >compatibility among tool vendors? For example, can I buil

Re: Openssl versions compability

2013-01-23 Thread Ken Goldman
On 1/23/2013 9:51 AM, Jeffrey Walton wrote: Binary compatibility can be tricky, and it brings up all the old wounds of Microsoft's COM. Are you claiming there is binary compatibility among tool vendors? For example, can I build the base with GCC, and then build patches with ICC? How about differe

Re: Openssl versions compability

2013-01-23 Thread Viktor Dukhovni
On Wed, Jan 23, 2013 at 09:51:08AM -0500, Jeffrey Walton wrote: > Binary compatibility can be tricky, and it brings up all the old > wounds of Microsoft's COM. Are you claiming there is binary > compatibility among tool vendors? For example, can I build the base > with GCC, and then build patches

Re: Openssl versions compability

2013-01-23 Thread Jeffrey Walton
On Wed, Jan 23, 2013 at 9:42 AM, Viktor Dukhovni wrote: > On Wed, Jan 23, 2013 at 09:12:41AM -0500, Ken Goldman wrote: > >> My experience is that you should not expect binary compatibility. >> Since errors will often be in little used corner cases, it's safer >> to always recompile. > > Please do

Re: Openssl versions compability

2013-01-23 Thread Viktor Dukhovni
On Wed, Jan 23, 2013 at 09:12:41AM -0500, Ken Goldman wrote: > My experience is that you should not expect binary compatibility. > Since errors will often be in little used corner cases, it's safer > to always recompile. Please do not spread FUD, the OpenSSL project made a commitment a while back

Re: Openssl versions compability

2013-01-23 Thread Ken Goldman
My experience is that you should not expect binary compatibility. Since errors will often be in little used corner cases, it's safer to always recompile. Sometimes recompiling is enough. Sometimes versions are so incompatible that you will have to port your application. However, more recen

Openssl versions compability

2013-01-23 Thread Leonardo Laface de Almeida
Hi, I'd like to know about it. I have a software developed in 1.0.0b version. I think it might be better to use some other newer release version, like 1.0.1c. Will I have any trouble doing this? I don't know if changes the answer, but it's for arm processor. Thanks, Leonardo

openSSL versions

2011-11-27 Thread John A. Wallace
I appear to have several versions of openSSL installed in various directories, which resulted from installing other programs that use its functionality. My OS is WinXP pro SP3, and I use Cygwin also. I would like to remove any redundant versions of this program if possible; or, if a second versi

About openssl versions mismatch - aes256 decryption.

2011-11-02 Thread nilesh
Hi, I am testing a dummy code for AES256_SHA decryption. Please see the attached server private key and the C code. The same code works for "OpenSSL 0.9.8r" and "OpenSSL 0.9.8k". But it produces junk after decryption on machine with OpenSSL version "OpenSSL 1.0.0b". Could someone please comm

Re: Bug in [ policy_match ] among OpenSSL versions?

2011-09-19 Thread Gabriel Marques
Thanks Dr. Stephen an Mr. Willy Weisz, the comments clarifies the different matching options. Still, bugged with the details that made OpenSSL complain about two strings apparently equal, I've sniffed out the certificates: 0.9.8 SET (1 elem) SEQUENCE (2

Re: Bug in [ policy_match ] among OpenSSL versions?

2011-09-19 Thread Dr. Stephen Henson
On Mon, Sep 19, 2011, Gabriel Marques wrote: > Hello folks, > > I'm developing a tool for signing digital TV apps, and for testing > I'm creating a lot of different test scenarios. > > Well, using OpenSSL 1.0.0e to create a new certificate, signed by a > snakeoil one I got the following error: >

Re: Bug in [ policy_match ] among OpenSSL versions?

2011-09-19 Thread Willy Weisz
Hi Gabriel, openssl performs as it is described. You probably wanted the behaviour activated by the option "supplied" which requires the DN component to be present, but doesn't tie it to the corresponding entry in the CA DN. Regards Willy Am 19.09.2011 17:02, schrieb Gabriel Marques: > Hello fo

Bug in [ policy_match ] among OpenSSL versions?

2011-09-19 Thread Gabriel Marques
Hello folks, I'm developing a tool for signing digital TV apps, and for testing I'm creating a lot of different test scenarios. Well, using OpenSSL 1.0.0e to create a new certificate, signed by a snakeoil one I got the following error: --> The stateOrProvinceName field needed to be the same

Multiple OpenSSL versions in process, dynamic loading/lookup in use

2011-07-22 Thread dave.mclellan
Hi. I'm looking for experiences in the community with dynamic loading and lookup of crypto/SSL entry points when multiple versions of the libraries might be loaded into the process space. Background is too detailed to start with, so I'll watch for takers and interested parties, so as not to c

Multiple OpenSSL versions and engines

2009-11-17 Thread monipol
/usr/lib/libcrypto.1.0.0.dylib /usr/lib/libssl.1.0.0.dylib What about engines? Are engines compiled in one specific OpenSSL version guaranteed to work with all other OpenSSL versions? If not, I could manually install them to different directories (e.g. /usr/lib/ openssl098-engines and /usr/lib/

Getting a cert with different openssl versions

2007-02-22 Thread Stephan Meier
Hi, I wrote an app that prints out the fingerprint of a certificate. I used SSL_get_peer_certificate(ssl) to get the cert. This works fine with openssl 0.9.8b but not with c (I always get NULL for the cert). Any ideas why? I used SSL_set_verify on the SSL object before making a sslconnect/acceppt.

compatibility between apache 2.0.* and different openssl versions

2005-12-02 Thread yokosafati
not sure whether my apache webserver will still run without any problems. Can anyone help me here ? What if instead of installing openssl 0.9.7i, I install openssl version 0.9.8 ? In connection to with this I have general questions regarding openssl versions: 1. are openssl versions backward

Re: OpenSSL versions

2002-06-26 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Wed, 26 Jun 2002 17:28:19 -0500, Ken Hoo <[EMAIL PROTECTED]> said: Ken_Hoo> Does anyone know how to find the documented differences between the Ken_Hoo> different versions of OpenSSL? I can't seem to locate the information Ken_Hoo> on the website. Thanks. htt

OpenSSL versions

2002-06-26 Thread Ken Hoo
Does anyone know how to find the documented differences between the different versions of OpenSSL? I can't seem to locate the information on the website. Thanks. __ OpenSSL Project http://www.ope