Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-10-28 02:03:52 +0300
committerAdam Langley <agl@google.com>2015-11-03 04:17:02 +0300
commiteb8be01f0c0ac2fdc2d2038eaeaa9fc868bce3ef (patch)
tree40fedb36db615fff1bde23b8999350d12f3e325e /tool/tool.cc
parent09d68c98c0470521b4bc33e486db7a9f9546c6a5 (diff)
Add ciphers option to bssl.
This simply converts a cipher suite string to the list of cipher suites that it implies. Change-Id: Id8b31086715d619ea6601c40a6eb84dc0d8c500d Reviewed-on: https://boringssl-review.googlesource.com/6370 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'tool/tool.cc')
-rw-r--r--tool/tool.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/tool.cc b/tool/tool.cc
index f67f0c7d..afe68403 100644
--- a/tool/tool.cc
+++ b/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 },