Skip to content

Instantly share code, notes, and snippets.

View remicollet's full-sized avatar
🏠
Working from home

Remi Collet remicollet

🏠
Working from home
View GitHub Profile
@remicollet
remicollet / passargon.php
Created July 5, 2019 09:45
passargon.php
<?php
define('TESTFILE', '/tmp/pass.json');
function generate() {
$pass = ['secret', 'coucou', 'LexjfvSDK', 'password'];
for ($i=0 ; $i<10 ; $i++) {
$pass[] = bin2hex(random_bytes(10+$i));
}
$res = [];