PageRenderTime 53ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/function/md5.php

https://github.com/cuu/whsoft
PHP | 12 lines | 11 code | 1 blank | 0 comment | 0 complexity | 98fdee1f312ea3e21e10dc801f335d02 MD5 | raw file
Possible License(s): GPL-2.0
  1. <?php
  2. function g_MD5($sMess)
  3. {
  4. return md5($sMess);
  5. }
  6. function g_CRC32($sMess)
  7. {
  8. $psw = sprintf( "%u", crc32(strval($sMess."jc")));
  9. return $psw;
  10. }
  11. ?>