1 /* 2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved. 3 * 4 * Licensed under the OpenSSL license (the "License"). You may not use 5 * this file except in compliance with the License. You can obtain a copy 6 * in the file LICENSE in the source distribution or at 7 * https://www.openssl.org/source/license.html 8 */ 9 10 #ifndef OPENSSL_HEADER_CAST_INTERNAL_H 11 #define OPENSSL_HEADER_CAST_INTERNAL_H 12 13 #include <openssl/base.h> 14 15 #if defined(__cplusplus) 16 extern "C" { 17 #endif 18 19 20 extern const uint32_t CAST_S_table0[256]; 21 extern const uint32_t CAST_S_table1[256]; 22 extern const uint32_t CAST_S_table2[256]; 23 extern const uint32_t CAST_S_table3[256]; 24 extern const uint32_t CAST_S_table4[256]; 25 extern const uint32_t CAST_S_table5[256]; 26 extern const uint32_t CAST_S_table6[256]; 27 extern const uint32_t CAST_S_table7[256]; 28 29 30 #if defined(__cplusplus) 31 } // extern C 32 #endif 33 34 #endif // OPENSSL_HEADER_CAST_INTERNAL_H 35