Now using actual include guards

This commit is contained in:
Leonetienne
2022-05-22 17:29:38 +02:00
parent a3c04b957f
commit cb6c50b684
8 changed files with 45 additions and 8 deletions

View File

@@ -1,4 +1,6 @@
#pragma once
#ifndef GCRYPT_FEISTEL_H
#define GCRYPT_FEISTEL_H
#include "GCrypt/Keyset.h"
#include "GCrypt/Block.h"
#include "GCrypt/Key.h"
@@ -60,3 +62,6 @@ namespace Leonetienne::GCrypt {
Keyset roundKeys;
};
}
#endif