mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-26 09:21:28 +00:00
move header guards to the top
This commit is contained in:
parent
a971a3188b
commit
510a7baee8
@ -1,3 +1,6 @@
|
|||||||
|
#ifndef CBD_H
|
||||||
|
#define CBD_H
|
||||||
|
|
||||||
/*---------------------------------------------------------------------
|
/*---------------------------------------------------------------------
|
||||||
This file has been adapted from the implementation
|
This file has been adapted from the implementation
|
||||||
(available at, Public Domain https://github.com/pq-crystals/kyber)
|
(available at, Public Domain https://github.com/pq-crystals/kyber)
|
||||||
@ -5,8 +8,6 @@ of "CRYSTALS – Kyber: a CCA-secure module-lattice-based KEM"
|
|||||||
by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
||||||
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
||||||
----------------------------------------------------------------------*/
|
----------------------------------------------------------------------*/
|
||||||
#ifndef CBD_H
|
|
||||||
#define CBD_H
|
|
||||||
|
|
||||||
#include "poly.h"
|
#include "poly.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
#ifndef POLY_H
|
||||||
|
#define POLY_H
|
||||||
|
|
||||||
/*---------------------------------------------------------------------
|
/*---------------------------------------------------------------------
|
||||||
This file has been adapted from the implementation
|
This file has been adapted from the implementation
|
||||||
(available at, Public Domain https://github.com/pq-crystals/kyber)
|
(available at, Public Domain https://github.com/pq-crystals/kyber)
|
||||||
@ -6,8 +9,6 @@ by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
|||||||
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
||||||
----------------------------------------------------------------------*/
|
----------------------------------------------------------------------*/
|
||||||
|
|
||||||
#ifndef POLY_H
|
|
||||||
#define POLY_H
|
|
||||||
|
|
||||||
#include "SABER_params.h"
|
#include "SABER_params.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
#ifndef VERIFY_H
|
||||||
|
#define VERIFY_H
|
||||||
|
|
||||||
/*-------------------------------------------------
|
/*-------------------------------------------------
|
||||||
This file has been adapted from the implementation
|
This file has been adapted from the implementation
|
||||||
(available at https://github.com/pq-crystals/kyber) of
|
(available at https://github.com/pq-crystals/kyber) of
|
||||||
@ -5,8 +8,6 @@ This file has been adapted from the implementation
|
|||||||
by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
by : Joppe Bos, Leo Ducas, Eike Kiltz, Tancrede Lepoint,
|
||||||
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
Vadim Lyubashevsky, John M. Schanck, Peter Schwabe & Damien stehle
|
||||||
----------------------------------------------------*/
|
----------------------------------------------------*/
|
||||||
#ifndef VERIFY_H
|
|
||||||
#define VERIFY_H
|
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user