/Library/Sighhat/Auth/Encoder/MD5.php

https://github.com/sketchmedia/sketchguild · PHP · 11 lines · 11 code · 0 blank · 0 comment · 0 complexity · e8d129ade6c1bcc362a121f3419b21f7 MD5 · raw file

  1. <?php
  2. namespace Sighhat\Auth\Encoder
  3. {
  4. final class MD5 extends Base
  5. {
  6. protected function _run($str)
  7. {
  8. return md5($str);
  9. }
  10. }
  11. }