<?php class mcCrypt { public static function crypt($param_string) { // return crypt($param_string); return hash('sha256' ,$param_string); } } ?>