Security
A few notes about how Delibay handles security. TODO: continue this.
Password storage
Based on OWASP recommendation, we use Argon2id hashing. In hashing.php
we kept the default Laravel values:
'argon' => [
'memory' => 65536,
'threads' => 1,
'time' => 4,
],