15 lines
260 B
C
15 lines
260 B
C
|
#ifndef PQCLEAN_MCELIECE460896F_VEC_TRANSPOSE_H
|
||
|
#define PQCLEAN_MCELIECE460896F_VEC_TRANSPOSE_H
|
||
|
/*
|
||
|
This file is for matrix transposition
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void PQCLEAN_MCELIECE460896F_VEC_transpose_64x64(uint64_t *out, const uint64_t *in);
|
||
|
|
||
|
#endif
|
||
|
|