blob: 81e5d392ae3dc7cfac3fb9489c9b0766438e275c [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 Afanasyev4c9a3d52017-01-03 17:45:19 -08003 * Copyright (c) 2013-2017 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.
Yingdi Yu8d7468f2014-02-21 14:49:45 -080020 */
21
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080022#include "ndnsec.hpp"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080023#include "util.hpp"
Yingdi Yu8d7468f2014-02-21 14:49:45 -080024
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080025namespace ndn {
26namespace ndnsec {
27
Yingdi Yub61f5402014-02-26 17:46:11 -080028int
29ndnsec_key_gen(int argc, char** argv)
Yingdi Yu8d7468f2014-02-21 14:49:45 -080030{
31 using namespace ndn;
32 namespace po = boost::program_options;
33
Alexander Afanasyev35109a12017-01-04 15:39:06 -080034 Name identityName;
Yingdi Yub61f5402014-02-26 17:46:11 -080035 bool isDefault = true;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080036 char keyType = 'r';
Yingdi Yu8d7468f2014-02-21 14:49:45 -080037 std::string outputFilename;
38
Yingdi Yuba8604d2014-10-13 19:03:12 -070039 po::options_description description("General Usage\n"
40 " ndnsec key-gen [-h] [-n] identity\n"
41 "General options");
Yingdi Yub61f5402014-02-26 17:46:11 -080042 description.add_options()
Yingdi Yu8d7468f2014-02-21 14:49:45 -080043 ("help,h", "produce help message")
Alexander Afanasyev35109a12017-01-04 15:39:06 -080044 ("identity,i", po::value<Name>(&identityName),
Yingdi Yuba8604d2014-10-13 19:03:12 -070045 "identity name, for example, /ndn/edu/ucla/alice")
46 ("not_default,n",
47 "optional, if not specified, the target identity will be set as "
48 "the default identity of the system")
Yingdi Yu7d8644a2014-12-01 22:55:49 -080049 ("type,t", po::value<char>(&keyType)->default_value('r'),
Alexander Afanasyev35109a12017-01-04 15:39:06 -080050 "optional, key type, r for RSA key (default), e for EC key")
Yingdi Yuba8604d2014-10-13 19:03:12 -070051 // ("size,s", po::value<int>(&keySize)->default_value(2048),
52 // "optional, key size, 2048 (default)")
Yingdi Yu8d7468f2014-02-21 14:49:45 -080053 ;
54
55 po::positional_options_description p;
56 p.add("identity", 1);
Yingdi Yu8d7468f2014-02-21 14:49:45 -080057
Yingdi Yub61f5402014-02-26 17:46:11 -080058 po::variables_map vm;
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080059 try {
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080060 po::store(po::command_line_parser(argc, argv).options(description).positional(p).run(), vm);
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080061 po::notify(vm);
62 }
63 catch (const std::exception& e) {
64 std::cerr << "ERROR: " << e.what() << std::endl;
65 std::cerr << description << std::endl;
66 return 1;
67 }
Yingdi Yub61f5402014-02-26 17:46:11 -080068
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080069 if (vm.count("help") != 0) {
70 std::cerr << description << std::endl;
71 return 0;
72 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080073
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080074 if (vm.count("identity") == 0) {
75 std::cerr << "identity must be specified" << std::endl;
76 std::cerr << description << std::endl;
77 return 1;
78 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -080079
Alexander Afanasyev35109a12017-01-04 15:39:06 -080080 if (vm.count("not_default") != 0) {
Yingdi Yub61f5402014-02-26 17:46:11 -080081 isDefault = false;
Alexander Afanasyev35109a12017-01-04 15:39:06 -080082 }
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080083
84 try {
Alexander Afanasyev35109a12017-01-04 15:39:06 -080085 unique_ptr<KeyParams> params;
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -080086 switch (keyType) {
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080087 case 'r':
Alexander Afanasyev35109a12017-01-04 15:39:06 -080088 params = make_unique<RsaKeyParams>();
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080089 break;
90 case 'e':
Alexander Afanasyev35109a12017-01-04 15:39:06 -080091 params = make_unique<EcKeyParams>();
Alexander Afanasyev82c359c2017-01-04 14:48:07 -080092 break;
93 default:
94 std::cerr << "Unrecongized key type\n"
95 << description << std::endl;
96 return 1;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080097 }
98
Alexander Afanasyev35109a12017-01-04 15:39:06 -080099 // @TODO set other parameters based on whatever user specified
100
101 security::v2::KeyChain keyChain;
102 security::Identity identity;
103 security::Key key;
104 try {
105 identity = keyChain.getPib().getIdentity(identityName);
106 key = keyChain.createKey(identity, *params);
107 }
108 catch (const security::Pib::Error&) {
109 // identity doesn't exist, so create it and generate key
110 identity = keyChain.createIdentity(identityName, *params);
111 key = identity.getDefaultKey();
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -0800112 }
113
Alexander Afanasyev35109a12017-01-04 15:39:06 -0800114 if (isDefault) {
115 keyChain.setDefaultKey(identity, key);
116 keyChain.setDefaultIdentity(identity);
117 }
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -0800118
Alexander Afanasyev35109a12017-01-04 15:39:06 -0800119 io::save(key.getDefaultCertificate(), std::cout);
Alexander Afanasyev2a047eb2014-11-30 22:45:02 -0800120 }
121 catch (const std::exception& e) {
122 std::cerr << "Error: " << e.what() << std::endl;
123 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800124 return 0;
125}
126
Alexander Afanasyev82c359c2017-01-04 14:48:07 -0800127} // namespace ndnsec
128} // namespace ndn