aboutsummaryrefslogtreecommitdiffstats
path: root/src/extra_tests/timing/timing-tests/MangerTest.cpp
blob: 6ed39819ba7587c2c21f0d6cfff13f7369c93230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* 
 * File:   MangerTest.cpp
 * Author: Juraj Somorovsky - juraj.somorovsky@hackmanit.de
 * 
 */

#include "TimingTest.h"

MangerTest::MangerTest(std::vector<std::string> &inputs, std::string result_folder, int keysize) :
   m_privkey(system_rng(), keysize),
   m_pubkey(m_privkey),
   m_enc(m_pubkey, m_encrypt_padding),
   m_dec(m_privkey, m_decrypt_padding) 
   {
   m_inputs = inputs;
   m_result_folder = result_folder;
   }

std::vector<byte> MangerTest::prepare_input(std::string input)
   {
   const std::vector<uint8_t> input_vector = Botan::hex_decode(input);
   const std::vector<byte> encrypted = m_enc.encrypt(input_vector, system_rng());
   return encrypted;
   }

ticks MangerTest::measure_critical_function(std::vector<byte> input)
   {
   const Botan::byte* in = &input[0];

   ticks start = this->get_ticks();
   try 
      {
      m_dec.decrypt(in, m_ctext_length);
      } 
      catch (Botan::Decoding_Error e) 
      {
      }
   ticks end = get_ticks();

   return (end - start);
   }