Changeset 104757 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 22, 2024 12:14:16 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/crypto/x509-create-sign.cpp
r104755 r104757 54 54 # include <openssl/bio.h> 55 55 # include "internal/openssl-post.h" 56 57 # if OPENSSL_VERSION_NUMBER < 0x1010000f 58 # define BIO_s_secmem BIO_s_mem 59 # endif 56 60 57 61 … … 170 174 */ 171 175 /* The certificate (not security sensitive). */ 172 # if OPENSSL_VERSION_NUMBER >= 0x1010000f173 176 BIO * const pCertBio = BIO_new(BIO_s_mem()); 174 # else175 BIO * const pCertBio = BIO_new(BIO_s_mem());176 # endif177 177 if (pCertBio) 178 178 {
Note:
See TracChangeset
for help on using the changeset viewer.