summaryrefslogtreecommitdiff
path: root/crypto_aead/lilliputaei128v1/ref/cipher.h
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@airbus.com>2018-11-22 11:02:01 +0100
committerKévin Le Gouguec <kevin.legouguec@airbus.com>2018-11-22 11:02:01 +0100
commite3fe01ca337c144b118d93b6930b6e9ac90864c3 (patch)
tree971e89eede1d78d7e93de3d87e713475cad3d5e1 /crypto_aead/lilliputaei128v1/ref/cipher.h
parentad7bfa1e842c8493880a860b7275048ba5dc730c (diff)
downloadlilliput-ae-implem-e3fe01ca337c144b118d93b6930b6e9ac90864c3.tar.xz
Remplacement des #pragma once par des include guards
La flemme de réfléchir aux problèmes de portabilité.
Diffstat (limited to 'crypto_aead/lilliputaei128v1/ref/cipher.h')
-rw-r--r--crypto_aead/lilliputaei128v1/ref/cipher.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto_aead/lilliputaei128v1/ref/cipher.h b/crypto_aead/lilliputaei128v1/ref/cipher.h
index a3d501f..46f01df 100644
--- a/crypto_aead/lilliputaei128v1/ref/cipher.h
+++ b/crypto_aead/lilliputaei128v1/ref/cipher.h
@@ -1,4 +1,5 @@
-#pragma once
+#ifndef CIPHER_H
+#define CIPHER_H
#include <stdio.h> /* debug */
#include <stdint.h>
@@ -25,3 +26,5 @@ void lilliput_tbc_decrypt(
uint8_t message[BLOCK_BYTES],
FILE *debug
);
+
+#endif /* CIPHER_H */