Re: OpenSSL 1.0.1b released, invalid tar file!

2012-04-28 Thread Steffen Daode Nurpmeso
Dr. David Kirkby wrote [2012-04-27 09:43+0200]: [.] See for ftp://ftp.berlios.de/pub/star/README.otherbugs He has developed star http://developer.berlios.de/projects/star which he has said produces POSIX compliant tar files. (berlios.de seems to be accessible again today.) --steffen

Compilation error in 1.0.1a, but is 1.0.1b build ok?

2012-04-28 Thread geo55
Upgrading on AIX 6.1 64bit. Config used aix-gcc by default, but I then I called Configure with 'aix64-gcc'. In either case, compile failed with: In file included from ../e_os.h:444, from cryptlib.h:65, from cryptlib.c:117: /usr/include/unistd.h:924: error:

Re: Please tell me about encryption API of OpenSSL 1.0.1

2012-04-28 Thread MauMau
From: fr...@baggins.org This code is only relevant if the EVP_CIPH_CUSTOM_IV flag is not set. If it is set it is ignored. XTS sets this flag in e_aes.c: #define XTS_FLAGS(EVP_CIPH_FLAG_DEFAULT_ASN1 | EVP_CIPH_CUSTOM_IV \ | EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CTRL_INIT) Oh,