diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2017-06-29 11:33:13 +0200 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2017-06-29 11:33:13 +0200 |
| commit | e3c5c5068a9b8915682e4ca346f47052d4a5f6df (patch) | |
| tree | 62cfa012976b7257a0847f7ad1e22f03fbfcd3dd | |
| parent | 5f5a808d883e521b2c53aa51cc267ba3f562c3be (diff) | |
| download | rabbitmq-server-git-e3c5c5068a9b8915682e4ca346f47052d4a5f6df.tar.gz | |
docs/rabbitmqctl.8: Add list_hashes, list_ciphers and decode commands
This changes are ported from the following commits to rabbitmqctl.1.xml
in `stable`:
- commit 020fa730ce65e2e19ba6bb483bfc5c458580c533
- commit 6b65e41330a40060919b0cc19b895a57348493a5
| -rw-r--r-- | docs/rabbitmqctl.8 | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/rabbitmqctl.8 b/docs/rabbitmqctl.8 index 6f8d40eaf2..e9bb7fd401 100644 --- a/docs/rabbitmqctl.8 +++ b/docs/rabbitmqctl.8 @@ -1847,6 +1847,32 @@ For example: .sp .Dl rabbitmqctl encode --cipher blowfish_cfb64 --hash sha256 --iterations 10000 '<<"guest">>' mypassphrase .El +.\" ------------------------------------ +.It Cm decode Ar value Ar passphrase +.Bl -tag -width Ds +.It Ar value Ar passphrase +Value to decrypt (as produced by the encode command) and passphrase. +.Pp +For example: +.sp +.Dl rabbitmqctl decode '{encrypted, <<"...">>}' mypassphrase +.El +.\" ------------------------------------ +.It Cm list_hashes +Lists hash functions supported by encoding commands. +.Pp +For example, this command instructs the RabbitMQ broker to list all hash +functions supported by encoding commands: +.sp +.Dl rabbitmqctl list_hashes +.\" ------------------------------------ +.It Cm list_ciphers +Lists cipher suites supported by encoding commands. +.Pp +For example, this command instructs the RabbitMQ broker to list all +cipher suites supported by encoding commands: +.sp +.Dl rabbitmqctl list_ciphers .El .\" ------------------------------------------------------------------ .Sh PLUGIN COMMANDS |
