class_mcCrypt.inc.php 198 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 <?php /** * @copyright (c) 2014, netz.coop eG */ class mcCrypt { public static function crypt($param_string) { // return crypt($param_string); return hash('sha256' ,$param_string); } } ?>