Quanah Gibson-Mount pushed to branch OPENLDAP_REL_ENG_2_4 at openldap / OpenLDAP
Commits:
2210a3bd by Simon Levermann at 2020-04-21T19:40:16+00:00
ITS#8575 Implement argon2 password hashing as a module
This change implements argon2, which won the Password Hashing
Competition (https://password-hashing.net/) as a contrib-module in order
to provide a modern password hashing alternative in openldap. The
currently available password hashing algorithms are relatively old, and
modern hardware, especially GPUs can compute quite a few (ranging from
tens of thousands to millions) of hashes per second. Argon2 was designed
to withstand such attacks.
This implementation uses the default work factors used in the argon2
command line client, but the resulting hashes are stored in a way that
would allow retroactive changes to these values, or even exposing them
as configuration in the module.
- - - - -
793f6ecd by Ondřej Kuzník at 2020-04-21T19:40:21+00:00
ITS#8575 Add a libsodium based implementation
- - - - -
b643f7fc by Ondřej Kuzník at 2020-04-21T19:40:24+00:00
ITS#8575 Accept parameters for hashing new passwords
- - - - -
997ff449 by Peter Marschall at 2020-04-21T19:40:30+00:00
ITS#9203 contrib/passwd/argon2: add manual page
Add manual page slapd-pw-argon2.5 and make sure it gets installed.
Signed-off-by: Peter Marschall <peter(a)adpm.de>
- - - - -
0ff54ddf by Ryan Tandy at 2020-04-21T19:40:33+00:00
ITS#9203 slapd-argon2 -> pw-argon2
Based on initial patch by Peter Marschall.
- - - - -
8ff81631 by Peter Marschall at 2020-04-21T19:40:38+00:00
ITS#9206 contrib/passwd/argon2: consolidate libsodium implementation
* use 'crypto_pwhash_str_alg(..., crypto_pwhash_ALG_ARGON2ID13)' to set
the algorithm to Argon2.
According to libsodium's documentation, the original 'crypto_pwhash_str()'
only guarantees a "memory-hard, CPU-intensive hash function", but not
necessarily Argon2. Although in released versions of libsodium Argon2 is
the only implemented backend, this may chane in the future.
* multiply the 'memory' parameter by 1024 to align it with the libargon2
implementation. The objective is to have consistent configuration in
OpenLDAP's pw-argon2 module no matter what backend implementation is used.
Signed-off-by: Peter Marschall <peter(a)adpm.de>
- - - - -
511ad098 by Ryan Tandy at 2020-04-21T19:40:42+00:00
ITS#9206 Initialize libsodium before calling its functions
- - - - -
07405636 by Ryan Tandy at 2020-04-21T19:40:45+00:00
ITS#9206 Convert libsodium default memlimit to KiB
- - - - -
59bed7e6 by Ryan Tandy at 2020-04-21T19:40:49+00:00
ITS#9206 Use argon2id default values explicitly
- - - - -
ba50189b by Ryan Tandy at 2020-04-21T19:40:55+00:00
ITS#9203 Remove default values from slapd-pw-argon2.5
The defaults vary by crypto library and possibly even version, so it's
not worth trying to keep them accurate.
- - - - -
4 changed files:
- + contrib/slapd-modules/passwd/argon2/Makefile
- + contrib/slapd-modules/passwd/argon2/README
- + contrib/slapd-modules/passwd/argon2/pw-argon2.c
- + contrib/slapd-modules/passwd/argon2/slapd-pw-argon2.5
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/0daf80129a7e3fa9ac1073…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/0daf80129a7e3fa9ac1073…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
a019e7fe by Quanah Gibson-Mount at 2020-04-20T21:38:01+00:00
ITS#9207 - Remove MozNSS code and documentation
- - - - -
8505f774 by Quanah Gibson-Mount at 2020-04-20T21:38:01+00:00
Update to drop NON_BLOCKING ifdefs that were only really for moznss
- - - - -
16 changed files:
- configure.in
- doc/guide/admin/appendix-recommended-versions.sdf
- doc/guide/admin/aspell.en.pws
- doc/guide/admin/install.sdf
- doc/guide/admin/intro.sdf
- doc/guide/admin/tls.sdf
- doc/guide/preamble.sdf
- doc/man/man3/ldap_get_option.3
- doc/man/man5/ldap.conf.5
- doc/man/man5/slapd-config.5
- doc/man/man5/slapd.conf.5
- libraries/libldap/Makefile.in
- libraries/libldap/tls2.c
- − libraries/libldap/tls_m.c
- libraries/libldap/tls_o.c
- libraries/libldap_r/Makefile.in
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/3dd0d77d1ac0cd2cd41a44…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/3dd0d77d1ac0cd2cd41a44…
You're receiving this email because of your account on git.openldap.org.
Quanah Gibson-Mount pushed to branch master at openldap / OpenLDAP
Commits:
8e3e85e3 by Isaac Boukris at 2020-04-19T11:10:50+03:00
auth: add SASL/GSSAPI tests
- - - - -
3dd0d77d by Isaac Boukris at 2020-04-19T11:10:50+03:00
gitlab: add krb5 packages for gssapi tests and a second build
- - - - -
7 changed files:
- .gitlab-ci.yml
- + tests/data/krb5.conf
- + tests/data/slapd-sasl-gssapi.conf
- tests/scripts/conf.sh
- tests/scripts/defines.sh
- + tests/scripts/setup_kdc.sh
- + tests/scripts/test077-sasl-gssapi
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/94ef2c9b43db43e2370905…
--
View it on GitLab: https://git.openldap.org/openldap/openldap/-/compare/94ef2c9b43db43e2370905…
You're receiving this email because of your account on git.openldap.org.