OPENSSL_try(EVP_CipherUpdate(ctx, k1, &outl, ks1, bl),"cipher update error (k1)", return0); OPENSSL_try(EVP_CipherUpdate(ctx, xctx->k2, &outl, ks2, bl),"cipher update error (k2)", return0); OPENSSL_try(EVP_CipherUpdate(ctx, xctx->k3, &outl, ks3, bl),"cipher update er...
Hi, I'm facing an issue in OpenSSL 3.0.3 (tested also with 3.0.1) that I'm not able to use EVP_EncryptUpdate if the input data are not multiplied by cipher block size. I suppose I'm doing something wrong but I couldn't figure out what. T...