blob: 4dc7ee0d8d04149d4401aef36358f0c595e113e8 [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.
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
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -070024#include "version.hpp"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080025
Alexander Afanasyev80782e02017-01-04 13:16:54 -080026#include "security/v1/key-chain.hpp"
Alexander Afanasyev4c9a3d52017-01-03 17:45:19 -080027#include "security/v1/certificate-subject-description.hpp"
28#include "security/v1/secured-bag.hpp"
29
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080030#include "util.hpp"
31#include "list.hpp"
32#include "get-default.hpp"
33#include "set-default.hpp"
34#include "key-gen.hpp"
35#include "dsk-gen.hpp"
36#include "sign-req.hpp"
37#include "cert-gen.hpp"
38#include "cert-revoke.hpp"
39#include "cert-dump.hpp"
40#include "cert-install.hpp"
41#include "export.hpp"
42#include "import.hpp"
43#include "delete.hpp"
Alexander Afanasyevd7db8bf2015-01-04 15:31:02 -080044#include "set-acl.hpp"
45#include "unlock-tpm.hpp"
46#include "op-tool.hpp"
Yingdi Yu8d7468f2014-02-21 14:49:45 -080047
48using namespace ndn;
Alexander Afanasyev4c9a3d52017-01-03 17:45:19 -080049using namespace ndn::security;
50using namespace ndn::security::v1;
Yingdi Yu8d7468f2014-02-21 14:49:45 -080051
52std::string ndnsec_helper("\
53 help Show all commands.\n\
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -070054 version Show version and exit.\n\
Yingdi Yu8d7468f2014-02-21 14:49:45 -080055 list Display information in PublicInfo.\n\
56 get-default Get default setting info.\n\
57 set-default Configure default setting.\n\
58 key-gen Generate a Key-Signing-Key for an identity.\n\
Alexander Afanasyevace74452014-11-30 22:28:24 -080059 dsk-gen Generate a Data-Signing-Key for an identity.\n\
Yingdi Yu8d7468f2014-02-21 14:49:45 -080060 sign-req Generate a certificate signing request.\n\
61 cert-gen Generate an identity certificate.\n\
Yingdi Yu5edf97d2014-06-15 11:35:12 -070062 cert-revoke Revoke an identity certificate.\n\
Yingdi Yu8d7468f2014-02-21 14:49:45 -080063 cert-dump Dump a certificate from PublicInfo.\n\
64 cert-install Install a certificate into PublicInfo.\n\
Yingdi Yu5c1f8412014-03-25 11:49:47 -070065 delete Delete identity/key/certificate.\n\
Yingdi Yu8d7468f2014-02-21 14:49:45 -080066 export Export an identity package.\n\
67 import Import an identity package.\n\
Yingdi Yu8d7468f2014-02-21 14:49:45 -080068 set-acl Configure ACL of a private key.\n\
69 unlock-tpm Unlock Tpm.\n\
70 op-tool Operator tool.\n\
Yingdi Yu05842f22014-04-15 19:21:56 -070071");
Yingdi Yu8d7468f2014-02-21 14:49:45 -080072
Yingdi Yu05842f22014-04-15 19:21:56 -070073int
Yingdi Yu5c1f8412014-03-25 11:49:47 -070074main(int argc, char** argv)
Yingdi Yu8d7468f2014-02-21 14:49:45 -080075{
Yingdi Yub61f5402014-02-26 17:46:11 -080076 if (argc < 2)
Yingdi Yuf8fc8de2014-02-25 15:45:39 -080077 {
78 std::cerr << ndnsec_helper << std::endl;
79 return 1;
80 }
81
Yingdi Yu8d7468f2014-02-21 14:49:45 -080082 std::string command(argv[1]);
Yingdi Yub61f5402014-02-26 17:46:11 -080083
84 try
85 {
Alexander Afanasyevcfe0b062014-05-08 18:26:50 -070086 if (command == "help") { std::cout << ndnsec_helper << std::endl; }
87 else if (command == "version") { std::cout << NDN_CXX_VERSION_BUILD_STRING
88 << std::endl; }
Yingdi Yub61f5402014-02-26 17:46:11 -080089 else if (command == "list") { return ndnsec_list(argc - 1, argv + 1); }
90 else if (command == "get-default") { return ndnsec_get_default(argc - 1, argv + 1); }
91 else if (command == "set-default") { return ndnsec_set_default(argc - 1, argv + 1); }
92 else if (command == "key-gen") { return ndnsec_key_gen(argc - 1, argv + 1); }
Alexander Afanasyevace74452014-11-30 22:28:24 -080093 else if (command == "dsk-gen") { return ndnsec_dsk_gen(argc - 1, argv + 1); }
Yingdi Yub61f5402014-02-26 17:46:11 -080094 else if (command == "sign-req") { return ndnsec_sign_req(argc - 1, argv + 1); }
95 else if (command == "cert-gen") { return ndnsec_cert_gen(argc - 1, argv + 1); }
Yingdi Yu5edf97d2014-06-15 11:35:12 -070096 else if (command == "cert-revoke") { return ndnsec_cert_revoke(argc - 1, argv + 1); }
Yingdi Yub61f5402014-02-26 17:46:11 -080097 else if (command == "cert-dump") { return ndnsec_cert_dump(argc - 1, argv + 1); }
98 else if (command == "cert-install") { return ndnsec_cert_install(argc - 1, argv + 1); }
99 else if (command == "delete") { return ndnsec_delete(argc - 1, argv + 1); }
100 else if (command == "export") { return ndnsec_export(argc - 1, argv + 1); }
101 else if (command == "import") { return ndnsec_import(argc - 1, argv + 1); }
Yingdi Yub61f5402014-02-26 17:46:11 -0800102 else if (command == "set-acl") { return ndnsec_set_acl(argc - 1, argv + 1); }
103 else if (command == "unlock-tpm") { return ndnsec_unlock_tpm(argc - 1, argv + 1); }
104 else if (command == "op-tool") { return ndnsec_op_tool(argc - 1, argv + 1); }
105 else {
106 std::cerr << ndnsec_helper << std::endl;
107 return 1;
108 }
109 }
110 catch (const std::runtime_error& e)
111 {
112 std::cerr << "ERROR: " << e.what() << std::endl;
113 return 1;
114 }
Yingdi Yu8d7468f2014-02-21 14:49:45 -0800115
116 return 0;
117}