blob: f68414f5ef53b49a7c9016ccd045bc7b0a6a4d76 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
Yingdi Yu8d7468f2014-02-21 14:49:45 -080022 */
23
24#ifndef NDNSEC_KEY_GEN_HPP
25#define NDNSEC_KEY_GEN_HPP
26
27#include "ndnsec-util.hpp"
28
Yingdi Yub61f5402014-02-26 17:46:11 -080029int
30ndnsec_key_gen(int argc, char** argv)
Yingdi Yu8d7468f2014-02-21 14:49:45 -080031{
32 using namespace ndn;
33 namespace po = boost::program_options;
34
35 std::string identityName;
Yingdi Yub61f5402014-02-26 17:46:11 -080036 bool isDefault = true;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080037 char keyType = 'r';
38 int keySize = 2048;
39 std::string outputFilename;
40
Yingdi Yuba8604d2014-10-13 19:03:12 -070041 po::options_description description("General Usage\n"
42 " ndnsec key-gen [-h] [-n] identity\n"
43 "General options");
Yingdi Yub61f5402014-02-26 17:46:11 -080044 description.add_options()
Yingdi Yu8d7468f2014-02-21 14:49:45 -080045 ("help,h", "produce help message")
Yingdi Yuba8604d2014-10-13 19:03:12 -070046 ("identity,i", po::value<std::string>(&identityName),
47 "identity name, for example, /ndn/edu/ucla/alice")
48 ("not_default,n",
49 "optional, if not specified, the target identity will be set as "
50 "the default identity of the system")
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080051 ("dsk,d", "generate Data-Signing-Key (DSK) instead of the default Key-Signing-Key (KSK)")
Yingdi Yuba8604d2014-10-13 19:03:12 -070052 // ("type,t", po::value<char>(&keyType)->default_value('r'),
53 // "optional, key type, r for RSA key (default)")
54 // ("size,s", po::value<int>(&keySize)->default_value(2048),
55 // "optional, key size, 2048 (default)")
Yingdi Yu8d7468f2014-02-21 14:49:45 -080056 ;
57
58 po::positional_options_description p;
59 p.add("identity", 1);
Yingdi Yu8d7468f2014-02-21 14:49:45 -080060
Yingdi Yub61f5402014-02-26 17:46:11 -080061 po::variables_map vm;
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080062 try {
63 po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(),
64 vm);
65 po::notify(vm);
66 }
67 catch (const std::exception& e) {
68 std::cerr << "ERROR: " << e.what() << std::endl;
69 std::cerr << description << std::endl;
70 return 1;
71 }
Yingdi Yub61f5402014-02-26 17:46:11 -080072
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080073 if (vm.count("help") != 0) {
74 std::cerr << description << std::endl;
75 return 0;
76 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080077
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080078 if (vm.count("identity") == 0) {
79 std::cerr << "identity must be specified" << std::endl;
80 std::cerr << description << std::endl;
81 return 1;
82 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080083
Yingdi Yub61f5402014-02-26 17:46:11 -080084 if (vm.count("not_default") != 0)
85 isDefault = false;
86
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080087 bool isKsk = (vm.count("dsk") == 0);
88
89 KeyChain keyChain;
90 Name keyName;
91
92 try {
93 switch (keyType) {
Yingdi Yub61f5402014-02-26 17:46:11 -080094 case 'r':
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080095 keyName = keyChain.generateRsaKeyPair(Name(identityName), isKsk, keySize);
96 break;
Yingdi Yub61f5402014-02-26 17:46:11 -080097 default:
98 std::cerr << "Unrecongized key type" << "\n";
99 std::cerr << description << std::endl;
100 return 1;
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800101 }
102
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -0800103 if (0 == keyName.size()) {
104 std::cerr << "Error: failed to generate key" << "\n";
105 return 1;
106 }
107
108 keyChain.setDefaultKeyNameForIdentity(keyName);
109
110 shared_ptr<IdentityCertificate> identityCert = keyChain.selfSign(keyName);
111
112 if (isDefault)
113 keyChain.setDefaultIdentity(Name(identityName));
114
115 io::save(*identityCert, std::cout);
116 }
117 catch (const std::exception& e) {
118 std::cerr << "Error: " << e.what() << std::endl;
119 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800120 return 0;
121}
122
123#endif //NDNSEC_KEY_GEN_HPP