Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 425 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 425 Bytes

Scrypt

Native Scrypt-Implementation for PHP

Usage

require_once ('Scrypt.php');

$Scrypt = new Scrypt (/* N */ 1024, /* r */ 8, /* p */ 16, /* dkLen */ 64);
echo bin2hex ($Scrypt ('password', 'salt'));

License

Copyright (C) 2018 Bernd Holzmüller

Licensed under the MIT license. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.