1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-12-02 12:21:23 +00:00
pqcrypto/crypto_kem/mceliece/mceliece460896/vec/transpose.h

15 lines
257 B
C

#ifndef PQCLEAN_MCELIECE460896_VEC_TRANSPOSE_H
#define PQCLEAN_MCELIECE460896_VEC_TRANSPOSE_H
/*
This file is for matrix transposition
*/
#include <stdint.h>
void PQCLEAN_MCELIECE460896_VEC_transpose_64x64(uint64_t *out, const uint64_t *in);
#endif