Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-26 08:18:40

0001 /*
0002  * Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
0003  *
0004  * Licensed under the Apache License 2.0 (the "License").  You may not use
0005  * this file except in compliance with the License.  You can obtain a copy
0006  * in the file LICENSE in the source distribution or at
0007  * https://www.openssl.org/source/license.html
0008  */
0009 
0010 #ifndef OPENSSL_SYMHACKS_H
0011 #define OPENSSL_SYMHACKS_H
0012 #pragma once
0013 
0014 #include <openssl/macros.h>
0015 #ifndef OPENSSL_NO_DEPRECATED_3_0
0016 #define HEADER_SYMHACKS_H
0017 #endif
0018 
0019 #include <openssl/e_os2.h>
0020 
0021 /* Case insensitive linking causes problems.... */
0022 #if defined(OPENSSL_SYS_VMS)
0023 #undef ERR_load_CRYPTO_strings
0024 #define ERR_load_CRYPTO_strings ERR_load_CRYPTOlib_strings
0025 #undef OCSP_crlID_new
0026 #define OCSP_crlID_new OCSP_crlID2_new
0027 
0028 #undef d2i_ECPARAMETERS
0029 #define d2i_ECPARAMETERS d2i_UC_ECPARAMETERS
0030 #undef i2d_ECPARAMETERS
0031 #define i2d_ECPARAMETERS i2d_UC_ECPARAMETERS
0032 #undef d2i_ECPKPARAMETERS
0033 #define d2i_ECPKPARAMETERS d2i_UC_ECPKPARAMETERS
0034 #undef i2d_ECPKPARAMETERS
0035 #define i2d_ECPKPARAMETERS i2d_UC_ECPKPARAMETERS
0036 
0037 #endif
0038 
0039 #endif /* ! defined HEADER_VMS_IDHACKS_H */