Browse Source

Change formatting

[skip ci]
kyber
Douglas Stebila 4 years ago
committed by Kris Kwiatkowski
parent
commit
ca0e28bc43
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      crypto_sign/falcon-512/clean/rng.c

+ 2
- 4
crypto_sign/falcon-512/clean/rng.c View File

@@ -142,10 +142,8 @@ PQCLEAN_FALCON512_CLEAN_prng_refill(prng *p) {
for (v = 4; v < 14; v ++) {
state[v] += d32[v - 4];
}
state[14] += d32[10]
^ (uint32_t)cc;
state[15] += d32[11]
^ (uint32_t)(cc >> 32);
state[14] += d32[10] ^ (uint32_t)cc;
state[15] += d32[11] ^ (uint32_t)(cc >> 32);
cc ++;

/*


Loading…
Cancel
Save