1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
.. _authentication_mechanisms:
=========================
Authentication Mechanisms
=========================
Mechanisms
==========
ANONYMOUS
---------
.. todo::
Content needed here
CRAM-MD5
--------
.. todo::
Content needed here
DIGEST-MD5
----------
.. todo::
Content needed here
EXTERNAL
--------
.. todo::
Content needed here
G2
-----
.. todo::
Content needed here
GSSAPI
------
Not sure how to get GSSAPI going? Check out our :ref:`GSSAPI configuration guide <gssapi>`.
.. todo::
Content needed here
GSS-SPEGNO
----------
.. todo::
Content needed here
KERBEROS_V4
-----------
.. todo::
Content needed here
LOGIN
-----
.. todo::
Content needed here
NTLM
----
.. todo::
Content needed here
OTP
---
* OTP-MD4
* OTP-MD5
* OTP-SHA1
.. todo::
Content needed here
PASSDSS
-------
* PASSDSS-3DES-1
.. todo::
Content needed here
PLAIN
-----
.. todo::
Content needed here
SCRAM
-----
* SCRAM-SHA-1
* SCRAM-SHA-256
.. todo::
Content needed here
SRP
---
* mda=sha1,rmd160,md5
* confidentiality=des-ofb,des-ede-ofb,aes-128-ofb,bf-ofb,cast5-ofb,idea-ofb
.. todo::
Content needed here
Non-SASL Authentication
-----------------------
.. todo::
Content needed here
----
Summary
=======
This table shows what security flags and features are supported by each
of the mechanisms provided by the Cyrus SASL Library.
+-------------+---------+----------------------------------------------------------------+-----------------------------------------------------------+
| | MAX SSF | SECURITY PROPERTIES | FEATURES |
+-------------+ +----------------------------------------------------------------+-----------------------------------------------------------+
| | | NOPLAIN | NOACTIVE | NODICT | FORWARD | NOANON | CRED | MUTUAL | CLT FIRST | SRV FIRST | SRV LAST | PROXY | BIND | HTTP |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| ANONYMOUS | 0 | X | | | | | | | X | | | | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| CRAM-MD5 | 0 | X | | | | X | | | | X | | | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| DIGEST-MD5 | 128 | X | | | | X | | X | reauth | initial auth | X | X | | X |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| EXTERNAL | 0 | X | | X | | X | | | X | | | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| G2 | 56 | X | X | | | X | | X | X | | X | X | X | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| GSSAPI | 56 | X | X | | | X | X | X | X | | | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| GSS-SPNEGO | 56 | X | X | | | X | X | X | X | | | X | | X |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| KERBEROS_V4 | 56 | X | X | | | X | | X | | X | | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| LOGIN | 0 | | | | | X | X | | | X | | | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| NTLM | 0 | X | | | | X | | | X | | | | | X |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| OTP | 0 | X | | | X | X | | | X | | | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| PASSDSS | 112 | X | X | X | X | X | X | X | X | | | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| PLAIN | 0 | | | | | X | X | | X | | | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| SCRAM | 0 | X | X | | | X | | X | X | | X | X | X | ? |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
| SRP | 128 | X | X | X | X | X | | X | X | | X | X | | |
+-------------+---------+---------+----------+--------+---------+--------+------+--------+-----------+--------------+----------+-------+------+------+
.. Helpfully generated from http://www.tablesgenerator.com/text_tables#
Understanding this table:
Security Properties:
* **MAX SSF** - The maximum Security Strength Factor supported by the mechanism (roughly the number of bits of encryption provided, but may have other meanings, for example an SSF of 1 indicates integrity protection only, no encryption).
* **NOPLAIN** - Mechanism is not susceptable to simple passive (eavesdropping) attack.
* **NOACTIVE** - Protection from active (non-dictionary) attacks during authentication exchange. (Implies MUTUAL).
* **NODICT** - Not susceptable to passive dictionary attack.
* **NOFORWARD** - Breaking one session won't help break the next.
* **NOANON** - Don't permit anonymous logins.
* **CRED** - Mechanism can pass client credentials.
* **MUTUAL** - Supports mutual authentication (authenticates the server to the client)
Features:
* **CLTFIRST** - The client should send first in this mechanism.
* **SRVFIRST** - The server must send first in this mechanism.
* **SRVLAST** - This mechanism supports server-send-last configurations.
* **PROXY** - This mechanism supports proxy authentication.
* **BIND** - This mechanism supports channel binding.
* **HTTP** - This mechanism has a profile for HTTP.
.. toctree::
:hidden:
gssapi
|