Skip to content

Instantly share code, notes, and snippets.

View rohjay's full-sized avatar

Ryan Oeltjenbruns rohjay

View GitHub Profile
@rohjay
rohjay / hasheesh.php
Last active March 27, 2019 17:58
Class to get the strongest hashing algorigthm available on any system to salt and hash passwords. Hasheesh =]
<?php
class Hasheesh
{
public static $algo = False;
public static function init()
{
$algos = array();
foreach ( hash_algos() as $algo ) {