Coverage Report

Created: 2022-05-14 06:06

/src/botan/build/include/botan/internal/code_based_util.h
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * (C) Copyright Projet SECRET, INRIA, Rocquencourt
3
 * (C) Bhaskar Biswas and  Nicolas Sendrier
4
 *
5
 * (C) 2014 cryptosource GmbH
6
 * (C) 2014 Falko Strenzke fstrenzke@cryptosource.de
7
 *
8
 * Botan is released under the Simplified BSD License (see license.txt)
9
 *
10
 */
11
12
#ifndef BOTAN_CODE_BASED_UTIL_H_
13
#define BOTAN_CODE_BASED_UTIL_H_
14
15
#include <botan/internal/gf2m_small_m.h>
16
17
namespace Botan {
18
19
/**
20
* Expand an input to a bit mask depending on it being being zero or non-zero
21
* @param tst the input
22
* @return the mask 0xFFFF if tst is non-zero and 0 otherwise
23
*/
24
template<typename T>
25
uint16_t expand_mask_16bit(T tst)
26
0
   {
27
0
   const uint16_t result = (tst != 0);
28
0
   return ~(result - 1);
29
0
   }
Unexecuted instantiation: unsigned short Botan::expand_mask_16bit<unsigned short>(unsigned short)
Unexecuted instantiation: unsigned short Botan::expand_mask_16bit<unsigned int>(unsigned int)
Unexecuted instantiation: unsigned short Botan::expand_mask_16bit<int>(int)
30
31
inline gf2m gray_to_lex(gf2m gray)
32
0
   {
33
0
   gf2m result = gray ^ (gray >> 8);
34
0
   result ^= (result >> 4);
35
0
   result ^= (result >> 2);
36
0
   result ^= (result >> 1);
37
0
   return result;
38
0
   }
39
40
inline gf2m lex_to_gray(gf2m lex)
41
0
   {
42
0
   return (lex >> 1) ^ lex;
43
0
   }
44
45
inline size_t bit_size_to_byte_size(size_t bit_size)
46
0
   {
47
0
   return (bit_size - 1) / 8 + 1;
48
0
   }
49
50
inline size_t bit_size_to_32bit_size(size_t bit_size)
51
0
   {
52
0
   return (bit_size - 1) / 32 + 1;
53
0
   }
54
55
}
56
57
#endif