Remove tag files.
[bertos.git] / bertos / sec / entropy.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief Entropy pool generic interface
34  * \author Giovanni Bajo <rasky@develer.com>
35  *
36  */
37
38 #ifndef SEC_ENTROPY_H
39 #define SEC_ENTROPY_H
40
41 #include <cfg/compiler.h>
42 #include <cfg/debug.h>
43
44 /**
45  * Maximum number of different sources of entropy available in BeRTOS.
46  *
47  * Increasing this value will likely make entropy pools use more RAM for their operations,
48  * so it should be kept to the minimum necessary for a given project.
49  */
50 #define CONFIG_ENTROPY_NUM_SOURCES   8
51
52 typedef struct EntropyPool
53 {
54     void (*add_entropy)(struct EntropyPool *ctx, int source_idx,
55                         const uint8_t *data, size_t len,
56                         int entropy);
57     bool (*seeding_ready)(struct EntropyPool *ctx);
58     void (*make_seed)(struct EntropyPool *ctx, uint8_t *out, size_t len);
59
60 } EntropyPool;
61
62
63 /**
64  * Add some data samples containing entropy into the pool.
65  * the samples are in the buffer pointed by \a data for a total of \a len
66  * bytes. \a entropy is the number of bits of estimated entropy in the
67  * samples. \a source_idx is the index of the entropy source.
68  */
69 INLINE void entropy_add(EntropyPool *e, int source_idx,
70                  const uint8_t *data, size_t len,
71                  int entropy)
72 {
73     ASSERT(e->add_entropy);
74     e->add_entropy(e, source_idx, data, len, entropy);
75 }
76
77 /**
78  * Check if the generator is ready to produce a new seed.
79  */
80 INLINE bool entropy_seeding_ready(EntropyPool *ctx)
81 {
82     ASSERT(ctx->seeding_ready);
83     return ctx->seeding_ready(ctx);
84 }
85
86 /**
87  * Generate a new seed of the specified length.
88  *
89  * \note This should not be abused to generate a very long seed, since the pool
90  * cannot hold lots of entropy.
91  */
92 INLINE void entropy_make_seed(EntropyPool *ctx, uint8_t *out, size_t len)
93 {
94     ASSERT(ctx->make_seed);
95     ctx->make_seed(ctx, out, len);
96 }
97
98 #endif /* SEC_ENTROPY_H */