Re: [openssl-users] [openssl-dev] Still problems with openssl 1.0.2 snapshot

2016-11-25 Thread Salz, Rich
How do you configure? > test_dtls1_not_bleeding failed: expected return value -1, received 0 > ** test_dtls1_not_bleeding failed ** ... > 4 tests failed > *** Error code 1 -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] How to produce a nested CMS / PKCS#7 structure?

2016-11-25 Thread Dr. Stephen Henson
On Tue, Nov 22, 2016, Wim Lewis wrote: > I'm trying to produce nested structures, like signed-enveloped-signed data. > This is explicitly described in the various RFCs, but I can't figure out how > to get OpenSSL to produce valid output, and I can't find any code examples of > doing this. > >

Re: [openssl-users] How to do AES-256-CBC encryption with EVP_CIPHER_CTX now opaque?

2016-11-25 Thread Matt Caswell
On 25/11/16 14:42, Dave Poirier wrote: > *Question 1: Are there other functions I should have been using to > implement AES-256-CBC than the EVP methods above?* EVP is the correct thing to be using. > > Question 2: If EVP is the way to go for implementing AES-256-CBC, which > functions should

[openssl-users] How to do AES-256-CBC encryption with EVP_CIPHER_CTX now opaque?

2016-11-25 Thread Dave Poirier
Hello, I am relatively new to using OpenSSL libraries in C so please accept my apologies if this may sound simple for most of you. I have an algorithm that I implemented in 1.0.1c to perform AES-256-CBC encryption, which no longer compiles due to EVP_CIPHER_CTX now being opaque in 1.1.0+. Her