#ifndef TYPES_HPP_ #define TYPES_HPP_ #include #include class trace { public: //uint8_t plaintext[16]; uint8_t ciphertext[16]; uint8_t faultytext[16]; }; class aes_col { public: uint8_t column[4]; aes_col(); bool operator==(const aes_col &) const; bool operator<(const aes_col &) const; }; typedef std::vector traces_vector_t; typedef std::vector aes_col_vector_t; typedef std::vector aes_col_matrix_t; #endif