blob: b64a6b22f79fd137aeb55e0f7ac27b78114ee71f [file] [log] [blame]
Alexander Afanasyev82c359c2017-01-04 14:48:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2013-2017 Regents of the University of California.
4 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6 *
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.
20 */
21
22#ifndef NDN_TOOLS_NDNSEC_NDNSEC_HPP
23#define NDN_TOOLS_NDNSEC_NDNSEC_HPP
24
25namespace ndn {
26namespace ndnsec {
27
28int
29ndnsec_list(int argc, char** argv);
30
31int
32ndnsec_get_default(int argc, char** argv);
33
34int
35ndnsec_set_default(int argc, char** argv);
36
37int
38ndnsec_key_gen(int argc, char** argv);
39
40int
41ndnsec_dsk_gen(int argc, char** argv);
42
43int
44ndnsec_sign_req(int argc, char** argv);
45
46int
47ndnsec_cert_gen(int argc, char** argv);
48
49int
50ndnsec_cert_revoke(int argc, char** argv);
51
52int
53ndnsec_cert_dump(int argc, char** argv);
54
55int
56ndnsec_cert_install(int argc, char** argv);
57
58int
59ndnsec_delete(int argc, char** argv);
60
61int
62ndnsec_export(int argc, char** argv);
63
64int
65ndnsec_import(int argc, char** argv);
66
67int
68ndnsec_set_acl(int argc, char** argv);
69
70int
71ndnsec_unlock_tpm(int argc, char** argv);
72
73} // namespace ndnsec
74} // namespace ndn
75
76#endif // NDN_TOOLS_NDNSEC_NDNSEC_HPP