PHP code example of nicolasflamel / blake2b

1. Go to this page and download the library: Download nicolasflamel/blake2b library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nicolasflamel / blake2b example snippets




// Require dependencies
mel\Blake2b\Blake2b;

// Initialize BLAKE2b
$blake2b = new Blake2b();

// Compute hash
$hash = $blake2b->compute(hex2bin("0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"), hex2bin("0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f20"), 32);