PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/dialup_admin/lib/crypt/md5.php3

https://github.com/jacques/freeradius
PHP | 6 lines | 6 code | 0 blank | 0 comment | 0 complexity | e4cb80643626b1a1e27ea99511235219 MD5 | raw file
Possible License(s): GPL-2.0, Unlicense, LGPL-2.1, AGPL-1.0
  1. <?php
  2. function da_encrypt($passwd)
  3. {
  4. return md5($passwd);
  5. }
  6. ?>