1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-26 17:31:38 +00:00
pqcrypto/crypto_kem/mceliece/mceliece348864/sse/bm.h

18 lines
336 B
C

#ifndef PQCLEAN_MCELIECE348864_SSE_BM_H
#define PQCLEAN_MCELIECE348864_SSE_BM_H
/*
This file is for the inversion-free Berlekamp-Massey algorithm
see https://ieeexplore.ieee.org/document/87857
*/
#include <stdint.h>
#include "params.h"
#include "vec128.h"
void PQCLEAN_MCELIECE348864_SSE_bm(uint64_t *out, vec128 *in);
#endif