This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include "include/cryptopp/aes.h" | |
#include "include/cryptopp/ccm.h" | |
#include "include/cryptopp/filters.h" | |
constexpr uint32_t size_of_aes_block = 16; | |
uint32_t get_rounds_number(const std::vector<CryptoPP::byte>& encoded_data) | |
{ |