davidwed
2019-09-07 f6437cfaed1dd0acd1ec63e1c282d0e7edfa4522
src/tools/license-generator/license-generator.cpp
@@ -107,7 +107,9 @@
   string client_signature = "";
   if (vm.count("client_signature")) {
      client_signature = vm["client_signature"].as<string>();
      cout << "cli sig:" << client_signature;
      regex e("[A-Za-z0-9\\+/]{4}-[A-Za-z0-9\\+/]{4}-[A-Za-z0-9\\+/]{4}-[A-Za-z0-9\\+/]{4}");
      cout << "\nregex:";
      if (!regex_match(client_signature, e)) {
         cerr << endl << "Client signature not recognized: "
            << client_signature
@@ -143,12 +145,12 @@
void LicenseGenerator::generateAndOutputLicenses(const po::variables_map& vm,
      ostream& outputFile) {
   vector<FullLicenseInfo> licenseInfo = parseLicenseInfo(vm);
   unique_ptr<CryptoHelper> helper = CryptoHelper::getInstance();
   const unique_ptr<CryptoHelper> helper = CryptoHelper::getInstance();
   const char pkey[] = PRIVATE_KEY;
   size_t len = sizeof(pkey);
   const size_t len = sizeof(pkey);
   for (auto it = licenseInfo.begin(); it != licenseInfo.end(); ++it) {
      const string license = it->printForSign();
      string signature = helper->signString((const void *)pkey,len,license);
      const string signature = helper->signString((const void *)pkey,len,license);
      it->license_signature = signature;
      it->printAsIni(outputFile);
   }