move more things out of common.hpp

Change-Id: If9136ebd299937a6daa044c3d959ee1e4ab69473
diff --git a/src/configuration.cpp b/src/configuration.cpp
index c9b1694..d5ae255 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -27,6 +27,19 @@
 namespace ndn {
 namespace ndncert {
 
+// Parse CA Configuration file
+const std::string CONFIG_CA_PREFIX = "ca-prefix";
+const std::string CONFIG_CA_INFO = "ca-info";
+const std::string CONFIG_MAX_VALIDITY_PERIOD = "max-validity-period";
+const std::string CONFIG_MAX_SUFFIX_LENGTH = "max-suffix-length";
+const std::string CONFIG_PROBE_PARAMETERS = "probe-parameters";
+const std::string CONFIG_PROBE_PARAMETER = "probe-parameter-key";
+const std::string CONFIG_SUPPORTED_CHALLENGES = "supported-challenges";
+const std::string CONFIG_CHALLENGE = "challenge";
+const std::string CONFIG_CERTIFICATE = "certificate";
+const std::string CONFIG_REDIRECTION = "redirect-to";
+const std::string CONFIG_NAME_ASSIGNMENT = "name-assignment";
+
 void
 CaProfile::parse(const JsonSection& configJson)
 {