aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Neus <[email protected]>2016-02-19 20:10:12 +0100
committerDaniel Neus <[email protected]>2016-02-19 20:10:12 +0100
commit3616ac0d92882641cf61ef5703ad0e827100350f (patch)
tree7d56819a7a3c794a3a9d2f91077b422a50505458
parent0c76098cbaa8002fb89756d6fa2b02359f3f5f88 (diff)
add missing include guards
-rw-r--r--src/lib/prov/tpm/tpm.h5
-rw-r--r--src/lib/prov/tpm/uuid.h5
2 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/prov/tpm/tpm.h b/src/lib/prov/tpm/tpm.h
index ce5eabe1c..7df232be3 100644
--- a/src/lib/prov/tpm/tpm.h
+++ b/src/lib/prov/tpm/tpm.h
@@ -5,6 +5,9 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
+#ifndef BOTAN_TPM_H__
+#define BOTAN_TPM_H__
+
#include <botan/exceptn.h>
#include <botan/pk_keys.h>
#include <botan/bigint.h>
@@ -180,3 +183,5 @@ class BOTAN_DLL TPM_PrivateKey : public Private_Key
// TODO: PCR measurement, writing, key locking
}
+
+#endif
diff --git a/src/lib/prov/tpm/uuid.h b/src/lib/prov/tpm/uuid.h
index 3c35da1f4..0094f4f83 100644
--- a/src/lib/prov/tpm/uuid.h
+++ b/src/lib/prov/tpm/uuid.h
@@ -5,6 +5,9 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
+#ifndef BOTAN_UUID_H__
+#define BOTAN_UUID_H__
+
#include <botan/secmem.h>
#include <botan/hex.h>
#include <sstream>
@@ -99,3 +102,5 @@ class UUID
};
}
+
+#endif