Changeset 100445 in vbox
- Timestamp:
- Jul 8, 2023 2:58:50 PM (17 months ago)
- Location:
- trunk/src/VBox/Runtime/common/crypto
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/key-openssl.cpp
r100442 r100445 72 72 || hKey->enmType == RTCRKEYTYPE_ECDSA_PRIVATE) 73 73 { 74 # if OPENSSL_VERSION_NUMBER >= 0x30000000 && !defined(LIBRESSL_VERSION_NUMBER) 74 75 void *pvFree = NULL; 75 76 const uint8_t *pbRaw = NULL; … … 90 91 RTMemTmpFree(pvFree); 91 92 } 93 #else 94 /** @todo d2i_KeyParams was introduced with 3.0.0, so ECDSA stuff won't work 95 * with older openssl versions atm. Fortunately we only really needs 96 * it on Windows atm., so no problem. */ 97 rc = RTERRINFO_LOG_SET_F(pErrInfo, VERR_NOT_SUPPORTED, 98 "OpenSSL version %#x is too old for IPRTs ECDSA code", OPENSSL_VERSION_NUMBER); 99 #endif 92 100 } 93 101 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.