b3f9d4f8d6
* Add McEliece reference implementations * Add Vec implementations of McEliece * Add sse implementations * Add AVX2 implementations * Get rid of stuff not supported by Mac ABI * restrict to two cores * Ditch .data files * Remove .hidden from all .S files * speed up duplicate consistency tests by batching * make cpuinfo more robust * Hope to stabilize macos cpuinfo without ccache * Revert "Hope to stabilize macos cpuinfo without ccache" This reverts commit 6129c3cabe1abbc8b956bc87e902a698e32bf322. * Just hardcode what's available at travis * Fixed-size types in api.h * namespace all header files in mceliece * Ditch operations.h * Get rid of static inline functions * fixup! Ditch operations.h
22 řádky
478 B
C
22 řádky
478 B
C
#ifndef PQCLEAN_MCELIECE6960119F_AVX_PARAMS_H
|
|
#define PQCLEAN_MCELIECE6960119F_AVX_PARAMS_H
|
|
|
|
#define GFBITS 13
|
|
#define SYS_N 6960
|
|
#define SYS_T 119
|
|
|
|
#define COND_BYTES ((1 << (GFBITS-4))*(2*GFBITS - 1))
|
|
#define IRR_BYTES (SYS_T * 2)
|
|
|
|
#define PK_NROWS (SYS_T*GFBITS)
|
|
#define PK_NCOLS (SYS_N - PK_NROWS)
|
|
#define PK_ROW_BYTES ((PK_NCOLS + 7)/8)
|
|
|
|
#define SK_BYTES (SYS_N/8 + IRR_BYTES + COND_BYTES)
|
|
#define SYND_BYTES ((PK_NROWS + 7)/8)
|
|
|
|
#define GFMASK ((1 << GFBITS) - 1)
|
|
|
|
#endif
|
|
|