Skip to content
Snippets Groups Projects
Commit 017f3b4b authored by Florian Schmaus's avatar Florian Schmaus
Browse files

EAN: Add hint to experiment with smaller ANB types

parent 7309ee03
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,15 @@
#include "filter.h"
#include "fail.h"
#ifdef SMALL_ANB_TYPES
typedef uint16_t enc_t;
typedef uint8_t plain_t;
typedef int8_t sig_t;
#else
typedef uint32_t enc_t;
typedef uint16_t plain_t;
typedef int16_t sig_t;
#endif
/**
* Check Signature of a ANB-coded value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment