|
34 | 34 | #include <tinycrypt/hmac.h>
|
35 | 35 | #include <tinycrypt/utils.h>
|
36 | 36 |
|
37 |
| -/* min bytes in the seed string. |
38 |
| - * MIN_SLEN*8 must be at least the expected security level. */ |
| 37 | +/* |
| 38 | + * min bytes in the seed string. |
| 39 | + * MIN_SLEN*8 must be at least the expected security level. |
| 40 | + */ |
39 | 41 | static const uint32_t MIN_SLEN = 32;
|
40 | 42 |
|
41 |
| -/* max bytes in the seed string; |
42 |
| - * SP800-90A specifies a maximum of 2^35 bits (i.e., 2^32 bytes).*/ |
| 43 | +/* |
| 44 | + * max bytes in the seed string; |
| 45 | + * SP800-90A specifies a maximum of 2^35 bits (i.e., 2^32 bytes). |
| 46 | + */ |
43 | 47 | static const uint32_t MAX_SLEN = UINT32_MAX;
|
44 | 48 |
|
45 |
| -/* max bytes in the personalization string; |
46 |
| - * SP800-90A specifies a maximum of 2^35 bits (i.e., 2^32 bytes).*/ |
| 49 | +/* |
| 50 | + * max bytes in the personalization string; |
| 51 | + * SP800-90A specifies a maximum of 2^35 bits (i.e., 2^32 bytes). |
| 52 | + */ |
47 | 53 | static const uint32_t MAX_PLEN = UINT32_MAX;
|
48 | 54 |
|
49 |
| -/* max bytes in the additional_info string; |
50 |
| - * SP800-90A specifies a maximum of 2^35 bits (i.e., 2^32 bytes).*/ |
| 55 | +/* |
| 56 | + * max bytes in the additional_info string; |
| 57 | + * SP800-90A specifies a maximum of 2^35 bits (i.e., 2^32 bytes). |
| 58 | + */ |
51 | 59 | static const uint32_t MAX_ALEN = UINT32_MAX;
|
52 | 60 |
|
53 |
| -/* max number of generates between re-seeds; |
| 61 | +/* |
| 62 | + * max number of generates between re-seeds; |
54 | 63 | * TinyCrypt accepts up to (2^32 - 1) which is the maximal value of
|
55 |
| - * a uint32_t variable, while SP800-90A specifies a maximum of 2^48.*/ |
| 64 | + * a uint32_t variable, while SP800-90A specifies a maximum of 2^48. |
| 65 | + */ |
56 | 66 | static const uint32_t MAX_GENS = UINT32_MAX;
|
57 | 67 |
|
58 |
| -/* maximum bytes per generate call; |
59 |
| - * SP800-90A specifies a maximum up to 2^19.*/ |
| 68 | +/* |
| 69 | + * maximum bytes per generate call; |
| 70 | + * SP800-90A specifies a maximum up to 2^19. |
| 71 | + */ |
60 | 72 | static const uint32_t MAX_OUT = (1 << 19);
|
61 | 73 |
|
62 | 74 | /*
|
@@ -136,8 +148,10 @@ int32_t tc_hmac_prng_reseed(TCHmacPrng_t prng,
|
136 | 148 | }
|
137 | 149 |
|
138 | 150 | if (additional_input != (const uint8_t *) 0) {
|
139 |
| - /* Abort if additional_input is provided but has inappropriate |
140 |
| - * length */ |
| 151 | + /* |
| 152 | + * Abort if additional_input is provided but has inappropriate |
| 153 | + * length |
| 154 | + */ |
141 | 155 | if (additionallen == 0 ||
|
142 | 156 | additionallen > MAX_ALEN) {
|
143 | 157 | return TC_FAIL;
|
|
0 commit comments