Supplying algorithm specific options with the htpasswd module

Hi

I'm using the htpasswd module to create a password file for use with
Dovecot, which is to be used for SMTP authentication.
This works OK but the default encryption scheme is 'apr_md5_crypt'
which isn't optimal.
But, as the doc already say
(https://docs.ansible.com/ansible/latest/modules/htpasswd_module.html#parameter-crypt_scheme
< btw - new direct link to parameter :slight_smile: ) I can also pick other
schemes that are supported by passlib. I verified those work as well
for my use case.

Most schemes that passlib supports seem to accept a number of optional
paramters, such as the number of rounds, custom salt, etc:
https://passlib.readthedocs.io/en/stable/lib/passlib.hash.argon2.html#interface

Is there any way to configure those through the htpasswd module?

thx

managed to make this work:
https://github.com/ansible/ansible/pull/67147