oxsha512hasher.php

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