feature implement for RFC 5764

2013-02-23 Thread LIU Quanxiu
Hello,openssl dev team My name is liuquanxiu,I am a programmer of Alcatel-lucent China working for wileline product. I can not find any code related srtp-dtls keys for RFC 5764, is RFC5764 not implemented completely on openssl-1.0.1e? do you have any example by using

Building

2013-02-23 Thread Stern, Andrew
I would like to add the iteration count parameter to the apps/enc.c so that it can have a number other than 1 passed to it using '-ic' x where x is the new number. I am experiencing an error building under Windows 32 bit. Having built a previous version I think I have the correct setup and

[openssl.org #2995] [PATCH] - Added ability to set the iteration count for the enc function of the openssl commandline tool.

2013-02-23 Thread Stern, Andrew via RT
# This adds the ability to set the iteration count from the command line # An example is setting it to 2 by doing the following: # openssl enc -aes-256-cbc -md sha1 -S 0958305A49D09548 -P -pass pass:randompassword -ic 2 # The patch was based off of OpenSSL_1_0_1e since the latest version

[openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2013-02-23 Thread carlo.bra...@libero.it via RT
Hello, in the file crypto/sha/sha.h there is this line: #if (defined(_WIN32) || defined(_WIN64)) !defined(__MINGW32__) used to conditionally declare SHA_LONG64 and U64 macros. Unfortunately, this causes OpenSSL to be unusable on Cygwin because, obviously, __MINGW32__ is not declared. A fix

[openssl.org #2997] Problems with build because of compiler warnings, etc.

2013-02-23 Thread a.i.x via RT
Hello together, In the moment I want to integrate a clean, warning free, c99 compatible OpenSSL in my library collection. I succeded in building the OpenSSL-1.0.1d package with my own build process with the compilers MSVC(32bit) and MingW(64bit) on windows. But I encountered some problems and

Re: [openssl.org #2996] PATCH: cygwin (and probably others) support broken by long time

2013-02-23 Thread Corinna Vinschen
On Feb 23 17:01, carlo.bra...@libero.it via RT wrote: Hello, in the file crypto/sha/sha.h there is this line: #if (defined(_WIN32) || defined(_WIN64)) !defined(__MINGW32__) used to conditionally declare SHA_LONG64 and U64 macros. Unfortunately, this causes OpenSSL to be unusable on