Coverage Report

Created: 2023-09-25 06:34

/src/botan/build/include/botan/internal/eme_raw.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
* (C) 2015 Jack Lloyd
3
*
4
* Botan is released under the Simplified BSD License (see license.txt)
5
*/
6
7
#ifndef BOTAN_EME_RAW_H_
8
#define BOTAN_EME_RAW_H_
9
10
#include <botan/internal/eme.h>
11
12
namespace Botan {
13
14
class EME_Raw final : public EME {
15
   public:
16
      size_t maximum_input_size(size_t i) const override;
17
18
0
      EME_Raw() = default;
19
20
   private:
21
      secure_vector<uint8_t> pad(const uint8_t[], size_t, size_t, RandomNumberGenerator&) const override;
22
23
      secure_vector<uint8_t> unpad(uint8_t& valid_mask, const uint8_t in[], size_t in_len) const override;
24
};
25
26
}  // namespace Botan
27
28
#endif