Skip to content

Argon2 as Password Hash

ljacqu edited this page Oct 22, 2017 · 4 revisions

Compile and install argon2 library on a linux os based

git clone https://www.github.com/P-H-C/phc-winner-argon2.git argon2-src;
cd argon2-src && sudo make && sudo make install;

Compile and install argon2 library on Windows:

IN THEORY : Install MINGW for Windows and Git Bash for Windows, open a git bash as Administrator somewhere, and do as follows:

git clone https://www.github.com/P-H-C/phc-winner-argon2.git argon2-src ;
cd argon2-src && make && make install;

We wrote IN THEORY because the Makefile says to do with MINGW but we cannot test the compilation correctly

Modify your authme config.yml:

    security:
        passwordHash: 'ARGON2'
Clone this wiki locally