mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-04-02 22:06:10 +00:00
12 lines
270 B
C
12 lines
270 B
C
#include <stdint.h>
|
|
|
|
#include "gf2_8_tables.h"
|
|
|
|
typedef uint8_t u8;
|
|
typedef uint32_t u32;
|
|
|
|
void obl_axpy(u8 *a, u8 *b, u8 u, unsigned k);
|
|
void obl_scal(u8 *a, u8 u, unsigned k);
|
|
void obl_swap(u8 *a, u8 *b, unsigned k);
|
|
void obl_axpyb32(u8 *a, u32 *b, u8 u, unsigned k);
|