Re: OpenSSL AES Decryption fails randomly C++

2022-11-12 Thread Thomas Bailleux
Hello Jinze. The issue doesn't come from OpenSSL. It comes from at least two buffer overruns. In aesEncrypt: > > ret = EVP_EncryptInit_ex(ctx, EVP_aes_128_ecb(), NULL, (const unsigned > char*)key.c_str(), NULL); You use key.c_str() to set the key. However, key here is "input": > > if (!aesEnc

Fw:OpenSSL AES Decryption fails randomly C++

2022-11-12 Thread WuJinze via openssl-users
sorry for my mistake. I found that the gist url can not display well in mail and here is the url: https://gist.github.com/GoGim1/77c9bebec1cc71cea066515b4623a051 WuJinze 294843...@qq.com   -- Original -- From:

Re: TLS 1.3 Early data

2022-11-12 Thread Dirk Menstermann
Hi, seconds after I send the previous mail, I found the bug in my code. It is working with Benjamin's suggestion. Thanks Jens On 12/11/2022 11:18, Dirk Menstermann wrote: Hi Benjamin, thanks for your response. I updated to 111s and replaced the SNI callback with the ClientHello callback as su

Re: TLS 1.3 Early data

2022-11-12 Thread Dirk Menstermann
Hi Benjamin, thanks for your response. I updated to 111s and replaced the SNI callback with the ClientHello callback as suggested, but still no luck. So far FF does not send early data if it was not configured before the handshake started. Do you have another idea? Best, Jens On 05/11/2022 21:1

OpenSSL AES Decryption fails randomly C++

2022-11-12 Thread WuJinze via openssl-users
Dear OpenSSL Group, Greetings. I was working on writing simple aes encrypt/decrypt wrapper function in c++ and running into a strange problem. The minimal reproducible examples in gist seems working fine but when i uncomment lines 90-92, it will fail to decrypt randomly. Can someone help me