refactor: rename configure.h to cose_configure.h
diff --git a/include/cose/cose.h b/include/cose/cose.h
index 32f4342..8b197d4 100644
--- a/include/cose/cose.h
+++ b/include/cose/cose.h
@@ -1,5 +1,5 @@
 #include <cn-cbor/cn-cbor.h>
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 
 #pragma once
 
diff --git a/include/cose/configure.h b/include/cose/cose_configure.h
similarity index 100%
rename from include/cose/configure.h
rename to include/cose/cose_configure.h
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a15c473..01cd85d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -10,7 +10,7 @@
 
 set(cose_sources
   ${CMAKE_CURRENT_LIST_DIR}/../include/cose/cose.h
-  ${CMAKE_CURRENT_LIST_DIR}/../include/cose/configure.h
+  ${CMAKE_CURRENT_LIST_DIR}/../include/cose/cose_configure.h
   crypto.h
   cose_int.h
   crypto.h
diff --git a/src/Cose.c b/src/Cose.c
index 0c7f0ed..6ded3fa 100644
--- a/src/Cose.c
+++ b/src/Cose.c
@@ -5,7 +5,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 bool IsValidCOSEHandle(HCOSE h)
diff --git a/src/Encrypt.c b/src/Encrypt.c
index 30d9f8e..a7e140a 100644
--- a/src/Encrypt.c
+++ b/src/Encrypt.c
@@ -13,7 +13,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_ENCRYPT || INCLUDE_MAC
diff --git a/src/Encrypt0.c b/src/Encrypt0.c
index 9cea4fc..132bde4 100644
--- a/src/Encrypt0.c
+++ b/src/Encrypt0.c
@@ -11,7 +11,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_ENCRYPT0 || INCLUDE_MAC0
diff --git a/src/MacMessage.c b/src/MacMessage.c
index 4a87d1a..6c4eb34 100644
--- a/src/MacMessage.c
+++ b/src/MacMessage.c
@@ -12,7 +12,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_MAC
diff --git a/src/MacMessage0.c b/src/MacMessage0.c
index bf10beb..d445265 100644
--- a/src/MacMessage0.c
+++ b/src/MacMessage0.c
@@ -12,7 +12,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_MAC0
diff --git a/src/Recipient.c b/src/Recipient.c
index f771674..a7a627c 100644
--- a/src/Recipient.c
+++ b/src/Recipient.c
@@ -5,7 +5,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_ENCRYPT || INCLUDE_ENCRYPT0 || INCLUDE_MAC || INCLUDE_MAC0
diff --git a/src/Sign.c b/src/Sign.c
index 9723aa5..082d5e3 100644
--- a/src/Sign.c
+++ b/src/Sign.c
@@ -6,7 +6,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 
 #if INCLUDE_SIGN
 
diff --git a/src/Sign1.c b/src/Sign1.c
index 8a0b85f..ae9c405 100644
--- a/src/Sign1.c
+++ b/src/Sign1.c
@@ -6,7 +6,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_SIGN1
diff --git a/src/SignerInfo.c b/src/SignerInfo.c
index 27f17c8..33b01d9 100644
--- a/src/SignerInfo.c
+++ b/src/SignerInfo.c
@@ -9,7 +9,7 @@
 
 #include "cose/cose.h"
 #include "cose_int.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "crypto.h"
 
 #if INCLUDE_SIGN
diff --git a/src/bcrypt.c b/src/bcrypt.c
index dea7428..d38bff0 100644
--- a/src/bcrypt.c
+++ b/src/bcrypt.c
@@ -1,5 +1,5 @@
 #include "cose/cose.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "cose_int.h"
 #include "crypto.h"
 
diff --git a/src/mbedtls.c b/src/mbedtls.c
index 0ae4e86..912cd7d 100644
--- a/src/mbedtls.c
+++ b/src/mbedtls.c
@@ -1,5 +1,5 @@
 #include "cose/cose.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "cose_int.h"
 #include "crypto.h"
 
diff --git a/src/openssl.c b/src/openssl.c
index e64330f..2ace55c 100644
--- a/src/openssl.c
+++ b/src/openssl.c
@@ -1,5 +1,5 @@
 #include "cose/cose.h"
-#include "cose/configure.h"
+#include "cose/cose_configure.h"
 #include "cose_int.h"
 #include "crypto.h"
 
diff --git a/test/encrypt.c b/test/encrypt.c
index ffb3f9c..14eff3e 100644
--- a/test/encrypt.c
+++ b/test/encrypt.c
@@ -6,7 +6,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <cose/cose.h>
-#include <cose/configure.h>
+#include <cose/cose_configure.h>
 #include <cn-cbor/cn-cbor.h>
 #if (INCLUDE_ENCRYPT || INCLUDE_ENCRYPT0 || INCLUDE_MAC) && (!INCLUDE_MAC || !INCLUDE_SIGN)
 #include <cose_int.h>
diff --git a/test/mac_test.c b/test/mac_test.c
index f6bace7..1be9ea2 100644
--- a/test/mac_test.c
+++ b/test/mac_test.c
@@ -4,7 +4,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <cose/cose.h>
-#include <cose/configure.h>
+#include <cose/cose_configure.h>
 #include <cn-cbor/cn-cbor.h>
 #if INCLUDE_MAC && !INCLUDE_ENCRYPT0
 #include <cose_int.h>
diff --git a/test/sign.c b/test/sign.c
index 24f1c13..fbd2092 100644
--- a/test/sign.c
+++ b/test/sign.c
@@ -6,7 +6,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <cose/cose.h>
-#include <cose/configure.h>
+#include <cose/cose_configure.h>
 #include <cn-cbor/cn-cbor.h>
 #if (INCLUDE_SIGN && !(INCLUDE_SIGN1 || INCLUDE_ENCRYPT || INCLUDE_MAC)) || (INCLUDE_SIGN1 && !INCLUDE_SIGN)
 #include <cose_int.h>
diff --git a/test/test.c b/test/test.c
index 5ea394c..209af1b 100644
--- a/test/test.c
+++ b/test/test.c
@@ -7,7 +7,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <cose/cose.h>
-#include <cose/configure.h>
+#include <cose/cose_configure.h>
 #include <cn-cbor/cn-cbor.h>
 #include <assert.h>