/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
- <?php
- namespace Sighhat\Auth\Encoder
- {
- final class MD5 extends Base
- {
- protected function _run($str)
- {
- return md5($str);
- }
- }
- }