==================
use password authentication
==================

PasswordAuthentication yes

---

(client_config
  (password_authentication
    (password_authentication_value)))

==================
do not use password authentication
==================

PasswordAuthentication no

---

(client_config
  (password_authentication
    (password_authentication_value)))

==================
use irregular casing
==================

PasswordAuthenTICation yes

---

(client_config
  (password_authentication
    (password_authentication_value)))

==================
can use equals sign
==================

PasswordAuthenTICation=yes

---

(client_config
  (password_authentication
    (password_authentication_value)))

==================
can use equals sign with whitespace
==================

PasswordAuthenTICation = yes

---

(client_config
  (password_authentication
    (password_authentication_value)))

==================
can be specified after host
==================

Host example.com
  PasswordAuthentication no

---

(client_config
  (host
    (host_value))
  (password_authentication
    (password_authentication_value)))

==================
detect invalid values
==================

PasswordAuthenTICation ja

---

(client_config
  (ERROR
    (UNEXPECTED 'j')))
