summaryrefslogtreecommitdiffstats
path: root/src/tool/tool.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tool/tool.cc')
-rw-r--r--src/tool/tool.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tool/tool.cc b/src/tool/tool.cc
index f67f0c7..afe6840 100644
--- a/src/tool/tool.cc
+++ b/src/tool/tool.cc
@@ -27,6 +27,7 @@
#endif
+bool Ciphers(const std::vector<std::string> &args);
bool Client(const std::vector<std::string> &args);
bool DoPKCS12(const std::vector<std::string> &args);
bool GenerateRSAKey(const std::vector<std::string> &args);
@@ -48,6 +49,7 @@ struct Tool {
};
static const Tool kTools[] = {
+ { "ciphers", Ciphers },
{ "client", Client },
{ "genrsa", GenerateRSAKey },
{ "md5sum", MD5Sum },