00001 00029 #ifndef POLARSSL_CIPHER_WRAP_H 00030 #define POLARSSL_CIPHER_WRAP_H 00031 00032 #include "config.h" 00033 #include "cipher.h" 00034 00035 #ifdef __cplusplus 00036 extern "C" { 00037 #endif 00038 00039 typedef struct 00040 { 00041 cipher_type_t type; 00042 const cipher_info_t *info; 00043 } cipher_definition_t; 00044 00045 extern const cipher_definition_t cipher_definitions[]; 00046 00047 extern int supported_ciphers[]; 00048 00049 #ifdef __cplusplus 00050 } 00051 #endif 00052 00053 #endif /* POLARSSL_CIPHER_WRAP_H */