Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 2 | /** |
Alexander Afanasyev | af99f46 | 2015-01-19 21:43:09 -0800 | [diff] [blame] | 3 | * Copyright (c) 2013-2015 Regents of the University of California. |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 6 | * |
Alexander Afanasyev | c169a81 | 2014-05-20 20:37:29 -0400 | [diff] [blame] | 7 | * 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 Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 20 | * |
| 21 | * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/> |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 22 | */ |
| 23 | |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 24 | #include "version.hpp" |
Alexander Afanasyev | d7db8bf | 2015-01-04 15:31:02 -0800 | [diff] [blame] | 25 | |
| 26 | #include "util.hpp" |
| 27 | #include "list.hpp" |
| 28 | #include "get-default.hpp" |
| 29 | #include "set-default.hpp" |
| 30 | #include "key-gen.hpp" |
| 31 | #include "dsk-gen.hpp" |
| 32 | #include "sign-req.hpp" |
| 33 | #include "cert-gen.hpp" |
| 34 | #include "cert-revoke.hpp" |
| 35 | #include "cert-dump.hpp" |
| 36 | #include "cert-install.hpp" |
| 37 | #include "export.hpp" |
| 38 | #include "import.hpp" |
| 39 | #include "delete.hpp" |
| 40 | #include "sig-verify.hpp" |
| 41 | #include "set-acl.hpp" |
| 42 | #include "unlock-tpm.hpp" |
| 43 | #include "op-tool.hpp" |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 44 | |
| 45 | using namespace ndn; |
| 46 | |
| 47 | std::string ndnsec_helper("\ |
| 48 | help Show all commands.\n\ |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 49 | version Show version and exit.\n\ |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 50 | list Display information in PublicInfo.\n\ |
| 51 | get-default Get default setting info.\n\ |
| 52 | set-default Configure default setting.\n\ |
| 53 | key-gen Generate a Key-Signing-Key for an identity.\n\ |
Alexander Afanasyev | ace7445 | 2014-11-30 22:28:24 -0800 | [diff] [blame] | 54 | dsk-gen Generate a Data-Signing-Key for an identity.\n\ |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 55 | sign-req Generate a certificate signing request.\n\ |
| 56 | cert-gen Generate an identity certificate.\n\ |
Yingdi Yu | 5edf97d | 2014-06-15 11:35:12 -0700 | [diff] [blame] | 57 | cert-revoke Revoke an identity certificate.\n\ |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 58 | cert-dump Dump a certificate from PublicInfo.\n\ |
| 59 | cert-install Install a certificate into PublicInfo.\n\ |
Yingdi Yu | 5c1f841 | 2014-03-25 11:49:47 -0700 | [diff] [blame] | 60 | delete Delete identity/key/certificate.\n\ |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 61 | export Export an identity package.\n\ |
| 62 | import Import an identity package.\n\ |
| 63 | sig-verify Verify the signature of a Data packet.\n\ |
| 64 | set-acl Configure ACL of a private key.\n\ |
| 65 | unlock-tpm Unlock Tpm.\n\ |
| 66 | op-tool Operator tool.\n\ |
Yingdi Yu | 05842f2 | 2014-04-15 19:21:56 -0700 | [diff] [blame] | 67 | "); |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 68 | |
Yingdi Yu | 05842f2 | 2014-04-15 19:21:56 -0700 | [diff] [blame] | 69 | int |
Yingdi Yu | 5c1f841 | 2014-03-25 11:49:47 -0700 | [diff] [blame] | 70 | main(int argc, char** argv) |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 71 | { |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 72 | if (argc < 2) |
Yingdi Yu | f8fc8de | 2014-02-25 15:45:39 -0800 | [diff] [blame] | 73 | { |
| 74 | std::cerr << ndnsec_helper << std::endl; |
| 75 | return 1; |
| 76 | } |
| 77 | |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 78 | std::string command(argv[1]); |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 79 | |
| 80 | try |
| 81 | { |
Alexander Afanasyev | cfe0b06 | 2014-05-08 18:26:50 -0700 | [diff] [blame] | 82 | if (command == "help") { std::cout << ndnsec_helper << std::endl; } |
| 83 | else if (command == "version") { std::cout << NDN_CXX_VERSION_BUILD_STRING |
| 84 | << std::endl; } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 85 | else if (command == "list") { return ndnsec_list(argc - 1, argv + 1); } |
| 86 | else if (command == "get-default") { return ndnsec_get_default(argc - 1, argv + 1); } |
| 87 | else if (command == "set-default") { return ndnsec_set_default(argc - 1, argv + 1); } |
| 88 | else if (command == "key-gen") { return ndnsec_key_gen(argc - 1, argv + 1); } |
Alexander Afanasyev | ace7445 | 2014-11-30 22:28:24 -0800 | [diff] [blame] | 89 | else if (command == "dsk-gen") { return ndnsec_dsk_gen(argc - 1, argv + 1); } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 90 | else if (command == "sign-req") { return ndnsec_sign_req(argc - 1, argv + 1); } |
| 91 | else if (command == "cert-gen") { return ndnsec_cert_gen(argc - 1, argv + 1); } |
Yingdi Yu | 5edf97d | 2014-06-15 11:35:12 -0700 | [diff] [blame] | 92 | else if (command == "cert-revoke") { return ndnsec_cert_revoke(argc - 1, argv + 1); } |
Yingdi Yu | b61f540 | 2014-02-26 17:46:11 -0800 | [diff] [blame] | 93 | else if (command == "cert-dump") { return ndnsec_cert_dump(argc - 1, argv + 1); } |
| 94 | else if (command == "cert-install") { return ndnsec_cert_install(argc - 1, argv + 1); } |
| 95 | else if (command == "delete") { return ndnsec_delete(argc - 1, argv + 1); } |
| 96 | else if (command == "export") { return ndnsec_export(argc - 1, argv + 1); } |
| 97 | else if (command == "import") { return ndnsec_import(argc - 1, argv + 1); } |
| 98 | else if (command == "sig-verify") { return ndnsec_sig_verify(argc - 1, argv + 1); } |
| 99 | else if (command == "set-acl") { return ndnsec_set_acl(argc - 1, argv + 1); } |
| 100 | else if (command == "unlock-tpm") { return ndnsec_unlock_tpm(argc - 1, argv + 1); } |
| 101 | else if (command == "op-tool") { return ndnsec_op_tool(argc - 1, argv + 1); } |
| 102 | else { |
| 103 | std::cerr << ndnsec_helper << std::endl; |
| 104 | return 1; |
| 105 | } |
| 106 | } |
| 107 | catch (const std::runtime_error& e) |
| 108 | { |
| 109 | std::cerr << "ERROR: " << e.what() << std::endl; |
| 110 | return 1; |
| 111 | } |
Yingdi Yu | 8d7468f | 2014-02-21 14:49:45 -0800 | [diff] [blame] | 112 | |
| 113 | return 0; |
| 114 | } |