Skip to content

Commit

Permalink
Fix header guard
Browse files Browse the repository at this point in the history
  • Loading branch information
FAlbertDev committed Jan 10, 2024
1 parent 40d0f92 commit 4efc88a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/lib/pubkey/classic_mceliece/cmce_parameter_set.h
Original file line number Diff line number Diff line change
@@ -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 <botan/oids.h>

Expand Down Expand Up @@ -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_

0 comments on commit 4efc88a

Please sign in to comment.