mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-24 18:01:17 +00:00
tinycrypt: use fast integer types
Signed-off-by: Kevin Bracey <kevin.bracey@arm.com>
This commit is contained in:
parent
2544cd3582
commit
f40c79272f
|
@ -98,10 +98,10 @@ extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* defining data types to store word and bit counts: */
|
/* defining data types to store word and bit counts: */
|
||||||
typedef int8_t wordcount_t;
|
typedef int_fast8_t wordcount_t;
|
||||||
typedef int16_t bitcount_t;
|
typedef int_fast16_t bitcount_t;
|
||||||
/* defining data type for comparison result: */
|
/* defining data type for comparison result: */
|
||||||
typedef int8_t cmpresult_t;
|
typedef int_fast8_t cmpresult_t;
|
||||||
/* defining data type to store ECC coordinate/point in 32bits words: */
|
/* defining data type to store ECC coordinate/point in 32bits words: */
|
||||||
typedef unsigned int uECC_word_t;
|
typedef unsigned int uECC_word_t;
|
||||||
/* defining data type to store an ECC coordinate/point in 64bits words: */
|
/* defining data type to store an ECC coordinate/point in 64bits words: */
|
||||||
|
|
Loading…
Reference in a new issue