mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-24 22:15:07 +00:00
Fix indentation level in one place
This commit is contained in:
parent
e1cb8846e7
commit
231bf52691
|
@ -170,9 +170,9 @@ int uECC_sign(const uint8_t *private_key, const uint8_t *message_hash,
|
||||||
unsigned hash_size, uint8_t *signature)
|
unsigned hash_size, uint8_t *signature)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
uECC_word_t _random[2*NUM_ECC_WORDS];
|
uECC_word_t _random[2*NUM_ECC_WORDS];
|
||||||
uECC_word_t k[NUM_ECC_WORDS];
|
uECC_word_t k[NUM_ECC_WORDS];
|
||||||
uECC_word_t tries;
|
uECC_word_t tries;
|
||||||
|
|
||||||
for (tries = 0; tries < uECC_RNG_MAX_TRIES; ++tries) {
|
for (tries = 0; tries < uECC_RNG_MAX_TRIES; ++tries) {
|
||||||
/* Generating _random uniformly at random: */
|
/* Generating _random uniformly at random: */
|
||||||
|
|
Loading…
Reference in a new issue