From 4efc88a2ddc105333a1c86004849c6291b2d01a5 Mon Sep 17 00:00:00 2001 From: Fabian Albert Date: Wed, 10 Jan 2024 12:28:45 +0100 Subject: [PATCH] Fix header guard --- .../pubkey/classic_mceliece/cmce_parameter_set.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/lib/pubkey/classic_mceliece/cmce_parameter_set.h b/src/lib/pubkey/classic_mceliece/cmce_parameter_set.h index f8a267fd3c7..d2b7c5e63b0 100644 --- a/src/lib/pubkey/classic_mceliece/cmce_parameter_set.h +++ b/src/lib/pubkey/classic_mceliece/cmce_parameter_set.h @@ -1,5 +1,13 @@ -#ifndef CMCE_PARAMETER_SET_H -#define CMCE_PARAMETER_SET_H +/* + * Classic McEliece Parameters + * (C) 2024 Jack Lloyd + * 2024 Fabian Albert, Amos Treiber - Rohde & Schwarz Cybersecurity + * + * Botan is released under the Simplified BSD License (see license.txt) + **/ + +#ifndef BOTAN_CMCE_PARAMETER_SET_H_ +#define BOTAN_CMCE_PARAMETER_SET_H_ #include @@ -66,4 +74,4 @@ Classic_McEliece_Parameter_Set param_set_from_oid(const OID& oid); } // namespace Botan -#endif // CMCE_PARAMETER_SET_H +#endif // BOTAN_CMCE_PARAMETER_SET_H_