/* * OpenSSL compatibility utils * * Copyright IBM Corp. 2021 * * s390-tools is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. */ #ifndef PV_UTILS_OPENSSL_COMPAT_H #define PV_UTILS_OPENSSL_COMPAT_H #include #include #include #if OPENSSL_VERSION_NUMBER < 0x30000000L #define Pv_X509_STORE_CTX_get_current_cert(ctx) \ X509_STORE_CTX_get_current_cert((X509_STORE_CTX *)(ctx)) #define Pv_X509_STORE_CTX_get1_crls(ctx, nm) \ X509_STORE_CTX_get1_crls((X509_STORE_CTX *)(ctx), (X509_NAME *)(nm)) #define Pv_X509_STORE_set_lookup_crls(st, cb) \ X509_STORE_set_lookup_crls(st, (X509_STORE_CTX_lookup_crls_fn)(cb)) #else #define Pv_X509_STORE_CTX_get_current_cert(ctx) \ X509_STORE_CTX_get_current_cert(ctx) #define Pv_X509_STORE_CTX_get1_crls(ctx, nm) \ X509_STORE_CTX_get1_crls(ctx, nm) #define Pv_X509_STORE_set_lookup_crls(st, cb) \ X509_STORE_set_lookup_crls(st, cb) #endif #endif