printstate.c 931 Bytes
Newer Older
Martin Schläffer committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
#ifdef ASCON_PRINT_STATE

#include "printstate.h"

#include <inttypes.h>
#include <stdio.h>
#include <string.h>

#ifndef WORDTOU64
#define WORDTOU64
#endif

#ifndef U64BIG
#define U64BIG
#endif

#include "ascon.h"
#include "shares.h"
#include "word.h"

void printword(const char* text, const word_t x, int ns) {
  uint32_t lo, hi, e = 0, o = 0;
  for (int d = 0; d < ns; ++d) {
    e ^= ROR32(x.s[d].w[0], ROT(d));
    o ^= ROR32(x.s[d].w[1], ROT(d));
  }
  BI(lo, hi, e, o);
  printf("%s=%016" PRIx64, text, (uint64_t)hi << 32 | lo);
#ifdef ASCON_PRINTBI32
  printf(" (%08x_%08x)", o, e);
#endif
}

void printstate(const char* text, const state_t* s, int ns) {
  printf("%s:", text);
  for (int i = strlen(text); i < 17; ++i) printf(" ");
  printword(" x0", s->x[0], ns);
  printword(" x1", s->x[1], ns);
  printword(" x2", s->x[2], ns);
  printword(" x3", s->x[3], ns);
  printword(" x4", s->x[4], ns);
  printf("\n");
}

#endif