oxsha512hasher.php

Go to the documentation of this file.
00001 <?php
00002 
00006 class oxSha512Hasher extends oxHasher
00007 {
00008 
00010     const HASHING_ALGORITHM_SHA512 = 'sha512';
00011 
00019     public function hash($sString)
00020     {
00021         return hash(self::HASHING_ALGORITHM_SHA512, $sString);
00022     }
00023 }