AE-1597 Updated deprecated openssl API's with new API's in openssl3.0
Review Request #907 — Created June 5, 2025 and submitted
| Information | |
|---|---|
| mmiriam | |
| AMP | |
| amp_4_0 | |
| AE-1597 | |
| Reviewers | |
| ngurunathan, pradeep, prajesh | |
AE-1597 Updated deprecated openssl API's with new API's in openssl3.0
| Description | From | Last Updated |
|---|---|---|
|
free ctx |
|
|
|
free ctx |
|
|
|
free CTX |
|
|
|
free ctx |
|
|
|
free |
|
|
|
free |
|
|
|
call free wherever needed. |
|
|
|
Can this be python3 and use python3 as a softlink to /usr/bin/python3.13. That when we change the python version we … |
|
|
|
dont we have to cleanup ? |
|
|
|
Earlier change seems to be correct. Now memory is not allocated for ctx. This might break the functionality. Pls double … |
|
|
|
YACC_DEBUG needed? |
|
|
|
chk why we need this change? |
|
|
|
const EVP_MD md_type = EVP_sha256(); // Example: SHA256 if (!EVP_DigestInit_ex(mdctx, md_type, NULL)) { / Handle error */ } Receommended approach … |
|
Change Summary:
added and removed few files
Diff: |
Revision 5 (+303 -147)
|
|---|
-
-
branches/amp_4_0/scripts/init_network.py (Diff revision 4) Can this be python3 and use python3 as a softlink to /usr/bin/python3.13. That when we change the python version we need to change it in one place? Check with Peri once.
-
-
-
branches/amp_4_0/src/backend/recovery.c (Diff revision 5) Earlier change seems to be correct. Now memory is not allocated for ctx. This might break the functionality. Pls double check on this.
-
-
-
branches/amp_4_0/tools/sign_unpack.c (Diff revision 5) const EVP_MD md_type = EVP_sha256(); // Example: SHA256
if (!EVP_DigestInit_ex(mdctx, md_type, NULL)) { / Handle error */ }Receommended approach as per chat gpt.
Diff: |
Revision 6 (+333 -147)
|
|---|
