Fix typos, applying Fix-spelling-errors.patch from Kali, thanks Sophie!

da550dbec7 (6e9d1bb9c071feb1a5ad25ec24296a3f6751f2d1)
This commit is contained in:
Philippe Teuwen 2021-10-04 20:48:55 +02:00
commit 6f6a3161a9
15 changed files with 33 additions and 33 deletions

View file

@ -41,7 +41,7 @@ int main(int argc, char *argv[]) {
printf(" {ar_1}: %08x\n", ar1_enc);
// Generate lfsr succesors of the tag challenge
printf("\nLFSR succesors of the tag challenge:\n");
printf("\nLFSR successors of the tag challenge:\n");
uint32_t p64 = prng_successor(nt, 64);
printf(" nt': %08x\n", p64);
printf(" nt'': %08x\n", prng_successor(p64, 32));

View file

@ -45,7 +45,7 @@ int main(int argc, char *argv[]) {
printf(" {ar_1}: %08x\n", ar1_enc);
// Generate lfsr succesors of the tag challenge
printf("\nLFSR succesors of the tag challenge:\n");
printf("\nLFSR successors of the tag challenge:\n");
uint32_t p64 = prng_successor(nt0, 64);
uint32_t p64b = prng_successor(nt1, 64);

View file

@ -59,7 +59,7 @@ int main(int argc, char *argv[]) {
}
// Generate lfsr succesors of the tag challenge
printf("\nLFSR succesors of the tag challenge:\n");
printf("\nLFSR successors of the tag challenge:\n");
uint32_t p64 = prng_successor(nt, 64);
printf(" nt': %08x\n", p64);
printf(" nt'': %08x\n", prng_successor(p64, 32));