move more things out of common.hpp

Change-Id: If9136ebd299937a6daa044c3d959ee1e4ab69473
diff --git a/src/ndncert-common.hpp b/src/ndncert-common.hpp
index 2a38778..cb8cd5b 100644
--- a/src/ndncert-common.hpp
+++ b/src/ndncert-common.hpp
@@ -61,6 +61,7 @@
 namespace ndncert {
 
 using boost::noncopyable;
+typedef boost::property_tree::ptree JsonSection;
 
 enum : uint32_t {
   tlv_ca_prefix = 129,
@@ -91,27 +92,6 @@
   tlv_probe_redirect = 179
 };
 
-// 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";
-typedef boost::property_tree::ptree JsonSection;
-
-// JSON and string translation for Config file parsing
-std::string
-convertJson2String(const JsonSection& json);
-
-JsonSection
-convertString2Json(const std::string& jsonContent);
-
 // NDNCERT error code
 enum class ErrorCode : uint16_t {
   NO_ERROR = 0,