Link to blogpost about client cert auth

This commit is contained in:
JC Brand 2016-11-03 14:38:29 +00:00
parent 64b5755d10
commit 55c2c383d1
2 changed files with 14 additions and 0 deletions

View File

@ -56,6 +56,11 @@ That's because this setting is intended to be used when you are using
SASL-EXTERNAL as authentication mechanism, in which case a password is usually SASL-EXTERNAL as authentication mechanism, in which case a password is usually
not required. not required.
SASL-EXTERNAL is generally used together with x509 client certificates to
enable passwordless login or 2-factor authentication.
For more details on this, `read this blog post <https://opkode.com/blog/strophe_converse_sasl_external/>`_.
anonymous anonymous
~~~~~~~~~ ~~~~~~~~~

View File

@ -96,3 +96,12 @@ Here are the different commands that may be used in a chat room:
+------------+----------------------------------------------------------------------------------------------+---------------------------------------------------------------+ +------------+----------------------------------------------------------------------------------------------+---------------------------------------------------------------+
| **voice** | Allow a muted user to post messages to the room. | /voice $nickname [$reason] | | **voice** | Allow a muted user to post messages to the room. | /voice $nickname [$reason] |
+------------+----------------------------------------------------------------------------------------------+---------------------------------------------------------------+ +------------+----------------------------------------------------------------------------------------------+---------------------------------------------------------------+
Passwordless login with client certificates
===========================================
Converse.js supports the SASL-EXTERNAL authentication mechanism, which can be
used together with x509 client certificates to enable passwordless login or
even 2-factor authentication.
For more info, `read this blog post <https://opkode.com/blog/strophe_converse_sasl_external/>`_.