As part of the prep for the move to an eventual release of version 2.4 of dovecot on FreeBSD I'd been looking over the requirements and noticed Berkely DB support is to be dropped, so this meant I need to set up Mariadb-server.
As part of this, I understand for SHA512-CRYPT
has to be invoked for my virtual_users table.
Now the question, how do I invoke this for ARGON2ID? I'd appreciate any guidance offered after a fruitless day trawling the internet.
As part of this, I understand for SHA512-CRYPT
Code:
INSERT INTO `mail`.`virtual_users`
(`id`, `domain_id`, `password` , `email`)
VALUES
('1', '1', ENCRYPT(‘password’, CONCAT('$6$', SUBSTRING(SHA(RAND()), -16))), ’user@example.com’),
has to be invoked for my virtual_users table.
Now the question, how do I invoke this for ARGON2ID? I'd appreciate any guidance offered after a fruitless day trawling the internet.