Botan 3.0.0
Crypto and TLS for C&
polyn_gf2m.h
Go to the documentation of this file.
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_POLYN_GF2M_H_
13#define BOTAN_POLYN_GF2M_H_
14
15#include <botan/secmem.h>
16#include <utility>
17
18namespace Botan {
19
20typedef uint16_t gf2m;
21
22class GF2m_Field;
23
24class RandomNumberGenerator;
25
27 {
28 public:
29 /**
30 * create a zero polynomial:
31 */
32 explicit polyn_gf2m(const std::shared_ptr<GF2m_Field>& sp_field);
33
34 polyn_gf2m() : m_deg(-1) {}
35
37 const std::shared_ptr<GF2m_Field>& sp_field);
38
39 polyn_gf2m& operator=(const polyn_gf2m&) = default;
40
41 /**
42 * create zero polynomial with reservation of space for a degree d polynomial
43 */
44 polyn_gf2m(int d, const std::shared_ptr<GF2m_Field>& sp_field);
45
46 polyn_gf2m(polyn_gf2m const& other);
47
48 /**
49 * random irreducible polynomial of degree t
50 */
51 polyn_gf2m(size_t t, RandomNumberGenerator& rng,
52 const std::shared_ptr<GF2m_Field>& sp_field);
53
54 /** decode a polynomial from memory: **/
55 polyn_gf2m(const uint8_t* mem, uint32_t mem_len, const std::shared_ptr<GF2m_Field>& sp_field);
56
57 /**
58 * create a polynomial from memory area (encoded)
59 */
60 polyn_gf2m(int degree, const uint8_t* mem, size_t mem_byte_len,
61 const std::shared_ptr<GF2m_Field>& sp_field);
62
63 bool operator==(const polyn_gf2m & other) const ;
64
65 bool operator!=(const polyn_gf2m & other) const { return !(*this == other); }
66
68 {
69 this->swap(other);
70 }
71
73 {
74 if(this != &other)
75 {
76 this->swap(other);
77 }
78 return *this;
79 }
80
81 void swap(polyn_gf2m& other);
82
84
85 std::shared_ptr<GF2m_Field> get_sp_field() const
86 { return m_sp_field; }
87
88 gf2m& operator[](size_t i) { return m_coeff[i]; }
89
90 gf2m operator[](size_t i) const { return m_coeff[i]; }
91
92 gf2m get_lead_coef() const { return m_coeff[m_deg]; }
93
94 gf2m get_coef(size_t i) const { return m_coeff[i]; }
95
96 inline void set_coef(size_t i, gf2m v)
97 {
98 m_coeff[i] = v;
99 }
100
101 inline void add_to_coef(size_t i, gf2m v)
102 {
103 m_coeff[i] ^= v;
104 }
105
106 void encode(uint32_t min_numo_coeffs, uint8_t* mem, uint32_t mem_len) const;
107
108 int get_degree() const;
109
110 /**
111 * determine the degree in a timing secure manner. the timing of this function
112 * only depends on the number of allocated coefficients, not on the actual
113 * degree
114 */
115 int calc_degree_secure() const;
116
117 static size_t degppf(const polyn_gf2m& g);
118
119 static std::vector<polyn_gf2m> sqmod_init(const polyn_gf2m & g);
120
121 static std::vector<polyn_gf2m> sqrt_mod_init(const polyn_gf2m & g);
122
123
124 polyn_gf2m sqmod(const std::vector<polyn_gf2m> & sq, int d);
125 void set_to_zero();
126 gf2m eval(gf2m a);
127
128 static std::pair<polyn_gf2m, polyn_gf2m> eea_with_coefficients(const polyn_gf2m & p,
129 const polyn_gf2m & g,
130 int break_deg);
131
132 void patchup_deg_secure( uint32_t trgt_deg, gf2m patch_elem);
133
134 private:
135
136 void set_degree(int d) { m_deg = d; }
137
138 void poly_shiftmod( const polyn_gf2m & g);
139 void realloc(uint32_t new_size);
140 static polyn_gf2m gcd(polyn_gf2m const& p1, polyn_gf2m const& p2);
141
142 /**
143 * destructive:
144 */
145 static void remainder(polyn_gf2m & p, const polyn_gf2m & g);
146
147 static polyn_gf2m gcd_aux(polyn_gf2m& p1, polyn_gf2m& p2);
148 private:
149 int m_deg;
150 secure_vector<gf2m> m_coeff;
151 std::shared_ptr<GF2m_Field> m_sp_field;
152 };
153
154gf2m random_gf2m(RandomNumberGenerator& rng);
155gf2m random_code_element(uint16_t code_length, RandomNumberGenerator& rng);
156
157std::vector<polyn_gf2m> syndrome_init(polyn_gf2m const& generator, std::vector<gf2m> const& support, int n);
158
159/**
160* Find the roots of a polynomial over GF(2^m) using the method by Federenko et al.
161*/
162secure_vector<gf2m> find_roots_gf2m_decomp(const polyn_gf2m & polyn, size_t code_length);
163
164}
165
166#endif
secure_vector< uint8_t > encode() const
Definition: polyn_gf2m.cpp:721
int get_degree() const
Definition: polyn_gf2m.cpp:179
std::shared_ptr< GF2m_Field > get_sp_field() const
Definition: polyn_gf2m.h:85
bool operator!=(const polyn_gf2m &other) const
Definition: polyn_gf2m.h:65
static std::pair< polyn_gf2m, polyn_gf2m > eea_with_coefficients(const polyn_gf2m &p, const polyn_gf2m &g, int break_deg)
Definition: polyn_gf2m.cpp:399
void set_coef(size_t i, gf2m v)
Definition: polyn_gf2m.h:96
polyn_gf2m(polyn_gf2m &&other)
Definition: polyn_gf2m.h:67
gf2m get_coef(size_t i) const
Definition: polyn_gf2m.h:94
gf2m get_lead_coef() const
Definition: polyn_gf2m.h:92
void patchup_deg_secure(uint32_t trgt_deg, gf2m patch_elem)
Definition: polyn_gf2m.cpp:380
polyn_gf2m & operator=(const polyn_gf2m &)=default
static std::vector< polyn_gf2m > sqmod_init(const polyn_gf2m &g)
Definition: polyn_gf2m.cpp:240
void swap(polyn_gf2m &other)
Definition: polyn_gf2m.cpp:742
static std::vector< polyn_gf2m > sqrt_mod_init(const polyn_gf2m &g)
Definition: polyn_gf2m.cpp:627
polyn_gf2m & operator=(polyn_gf2m &&other)
Definition: polyn_gf2m.h:72
void encode(uint32_t min_numo_coeffs, uint8_t *mem, uint32_t mem_len) const
gf2m operator[](size_t i) const
Definition: polyn_gf2m.h:90
void add_to_coef(size_t i, gf2m v)
Definition: polyn_gf2m.h:101
int calc_degree_secure() const
Definition: polyn_gf2m.cpp:46
bool operator==(const polyn_gf2m &other) const
Definition: polyn_gf2m.cpp:749
gf2m & operator[](size_t i)
Definition: polyn_gf2m.h:88
polyn_gf2m sqmod(const std::vector< polyn_gf2m > &sq, int d)
Definition: polyn_gf2m.cpp:274
gf2m eval(gf2m a)
Definition: polyn_gf2m.cpp:205
static size_t degppf(const polyn_gf2m &g)
Definition: polyn_gf2m.cpp:341
polyn_gf2m(polyn_gf2m const &other)
Definition: alg_id.cpp:12
std::vector< polyn_gf2m > syndrome_init(polyn_gf2m const &generator, std::vector< gf2m > const &support, int n)
Definition: polyn_gf2m.cpp:672
gf2m random_code_element(uint16_t code_length, RandomNumberGenerator &rng)
Definition: polyn_gf2m.cpp:71
gf2m random_gf2m(RandomNumberGenerator &rng)
Definition: polyn_gf2m.cpp:64
secure_vector< gf2m > find_roots_gf2m_decomp(const polyn_gf2m &polyn, size_t code_length)
std::vector< T, secure_allocator< T > > secure_vector
Definition: secmem.h:64
uint16_t gf2m
Definition: gf2m_small_m.h:20