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
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.
>
>
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
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