https://bugs.openldap.org/show_bug.cgi?id=9517
--- Comment #1 from gilbert.kowarzyk@servicenow.com --- I just noticed an additional thing.
If the module is loaded (for example) with:
olcModuleload: argon2.so m=62500 t=8 p=6
and the Frontend has:
olcPasswordHash: {ARGON2}
I would have expected the new passwords to be created with:
- memory: m=62500 (i.e. 64MB) - parallelism: p=6 - iterations: t=8
Nevertheless, if change the password using `ldappasswd`, the resulting hash starts with:
{ARGON2}$argon2id$v=19$m=62500,t=8,p=1$...
that is, the parallelism is not respected (it shows "p=1" instead of the expected "p=6".
Nevertheless, it seems to be read here (tag= OPENLDAP_REL_ENG_2_4_58): https://github.com/openldap/openldap/blob/350ede08564ab14a45884c6f7c32419d98...