Changeset 104755 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- May 22, 2024 11:32:11 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/x509-create-sign.cpp
r104745 r104755 122 122 123 123 /* The certificate is valid from now and the specifice number of seconds forwards: */ 124 # if OPENSSL_VERSION_NUMBER >= 0x 30000000124 # if OPENSSL_VERSION_NUMBER >= 0x1010000f 125 125 AssertStmt(X509_gmtime_adj(X509_getm_notBefore(pNewCert), 0), 126 126 rc = RTErrInfoSet(pErrInfo, VERR_GENERAL_FAILURE, "X509_gmtime_adj/before failed")); … … 170 170 */ 171 171 /* The certificate (not security sensitive). */ 172 # if OPENSSL_VERSION_NUMBER >= 0x1010000f 172 173 BIO * const pCertBio = BIO_new(BIO_s_mem()); 174 # else 175 BIO * const pCertBio = BIO_new(BIO_s_mem()); 176 # endif 173 177 if (pCertBio) 174 178 {
Note:
See TracChangeset
for help on using the changeset viewer.