Skip to main content
Skip table of contents

Installeren Argon2 (versie 1)

Encryptie-algoritme bij het gebruik van Typo3.

Stap voor stap handleiding

  1. Installeer als eerst de argon library:
    yum install libargon2-devel
  2. Voeg de volgende regel aan de build config toe:
    --with-password-argon2 \

    cd /usr/local/directadmin/custombuild
    mkdir -p custom/php
    cp -fp configure/php/configure.php74 custom/php/configure.php74 (of welke versie je nodig hebt) en daar de regel bij zetten (bij multiphp meerdere ;) )
  3. ./build php n

Het kan eventueel getest worden met het volgende script:
<?php $H=password_hash('somepassword', PASSWORD_ARGON2I, ['memory_cost' => 2048, 'time_cost' => 4, 'threads' => 3]); echo $H;

Gerelateerde artikelen



JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.