/*************************************************************************** AmiSSL - OpenSSL wrapper for AmigaOS-based systems Copyright (c) 1999-2006 Andrija Antonijevic, Stefan Burstroem. Copyright (c) 2006-2022 AmiSSL Open Source Team. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License in the file LICENSE in the source distribution or at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. AmiSSL Official Support Site: https://github.com/jens-maus/amissl ***************************************************************************/ /* * Make sure that this file is included from proto/amissl.h * so that the dependancies don't cause errors */ #ifndef PROTO_AMISSL_H #include #endif #ifndef AMISSL_AMISSL_H #define AMISSL_AMISSL_H #include #ifndef OPENSSL_NO_AES #include #endif #include #include #include #include #ifndef OPENSSL_NO_BF #include #endif #include #include #ifndef OPENSSL_NO_CAMELLIA #include #endif #ifndef OPENSSL_NO_CAST #include #endif #ifndef OPENSSL_NO_CMAC #include #endif #ifndef OPENSSL_NO_CMP #include #endif #include #include #include #include #ifndef OPENSSL_NO_CRMF #include #endif #include #ifndef OPENSSL_NO_CT #include #endif #include #ifndef OPENSSL_NO_DES #include #endif #ifndef OPENSSL_NO_DH #include #endif #ifndef OPENSSL_NO_DSA #include #endif #include #include #ifndef OPENSSL_NO_EC #include #endif #include #ifndef OPENSSL_NO_ENGINE #include #endif #include #include #include #ifndef OPENSSL_NO_HMAC #include #endif #include #include #ifndef OPENSSL_NO_IDEA #include #endif #include #include #ifndef OPENSSL_NO_MD2 #include #endif #ifndef OPENSSL_NO_MD4 #include #endif #ifndef OPENSSL_NO_MD5 #include #endif #ifndef OPENSSL_NO_MDC2 #include #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef OPENSSL_NO_RC2 #include #endif #ifndef OPENSSL_NO_RC4 #include #endif #ifndef OPENSSL_NO_RC5 #include #endif #ifndef OPENSSL_NO_RIPEMD #include #endif #ifndef OPENSSL_NO_RSA #include #endif #include #ifndef OPENSSL_NO_SEED #include #endif #include #ifndef OPENSSL_NO_SHA #include #endif #ifndef OPENSSL_NO_SRP #include #endif #include #include #include #include #include #include #include #include #include #include #ifndef OPENSSL_NO_TS #include #endif #include #include #include #ifndef OPENSSL_NO_WHIRLPOOL #include #endif #include #include #include // order dependent header files #ifndef OPENSSL_NO_CMS #include #endif #include // internal typedefs #ifndef OSSL_INTERNAL_O_DIR_H typedef struct OPENSSL_dir_context_st OPENSSL_DIR_CTX; #endif #endif /* AMISSL_AMISSL_H */