Authentication ============== Authentication is split into four parts: 1. [Authentication.Mechanisms.txt] 2. [Authentication.PasswordSchemes.txt] 3. [PasswordDatabase.txt] 4. [UserDatabase.txt] See also [Authentication.Penalty.txt] handling for IP addresses. See also [Authentication.Policy.txt] for making policy based decisions. Authentication mechanisms vs. password schemes ---------------------------------------------- Authentication mechanisms and password schemes are often confused, because they have somewhat similar values. For example there is a PLAIN auth mechanism and PLAIN password scheme. But they mean completely different things. * *Authentication mechanism is a client/server protocol*. It's about how the client and server talk to each others in order to perform the authentication. Most people use only PLAIN authentication, which basically means that the user and password are sent without any kind of encryption to the server. SSL/TLS can then be used to provide the encryption to make PLAIN authentication secure. * *Password scheme is about how the password is hashed in your password database*. If you use a PLAIN scheme, your passwords are stored in cleartext without any hashing in the password database. A popular password scheme MD5-CRYPT (also commonly used in '/etc/shadow') where passwords looks like "$1$oDMXOrCA$plmv4yuMdGhL9xekM.q.I/". * Plaintext authentication mechanisms work with ALL password schemes. * Non-plaintext authentication mechanisms require either PLAIN password scheme or a mechanism-specific password scheme. (This file was created from the wiki on 2019-06-19 12:42)