[openssl-users] Errors building 1.0.2e on Mac OS X 10.7.5

2015-12-15 Thread James Brown
I know the OS is a bit old, but thought I’d better upgrade OpenSSL on it in now. To configure I used: ./Configure --prefix=/usr/local shared darwin64-x86_64-cc Running make gives lots of errors like this: cc -I.. -I../.. -I../modes -I../asn1 -I../evp -I../../include -fPIC -fno-common -DOPENSS

Re: [openssl-users] CBC ciphers + TLS 1.0 protocol does not work in OpenSSL 1.0.2d

2015-12-15 Thread Andy Polyakov
> 1. With compiler optimization disabled, OpenSSL 1.0.2d function worked > as it is. Another indication in favour of compiler bug is that it worked when you added printf. It's similar to quantum physics when by measuring you force particle to specific state. But understand me correctly. I'm not sa

[openssl-users] Engines mess

2015-12-15 Thread Dmitry Belyavsky
Hello, Could you explain the engine management in the openssl 1.0.2e? I load an engine via openssl config specifying the path using the dynamic_path directive and provide some engine-specific directives. When I call the dgst command dgst -sha1 -engine myengine -keyform engine -sign mykey -out s

Re: [openssl-users] CBC ciphers + TLS 1.0 protocol does not work in OpenSSL 1.0.2d

2015-12-15 Thread Jayalakshmi bhat
Hi All, 1. With compiler optimization disabled, OpenSSL 1.0.2d function worked as it is. 2. Looks like in the below functions, typecast to unsigned char to is not going well when compiler optimization is enabled. Hence functions are modified to assign the return value to a volatile unsigned char a