PageRenderTime 41ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/preney-code/passwords-computing-hash/calling-md5-to-hash-up-something.php

https://github.com/Jordan-Bortolotti/twx
PHP | 6 lines | 4 code | 1 blank | 1 comment | 0 complexity | d9cb1f97d5262604d804aa82fc0438e0 MD5 | raw file
Possible License(s): LGPL-2.1, CC-BY-SA-4.0
  1. <?php
  2. header('Content-Type: text/plain');
  3. echo md5('paul');
  4. // You can also use sha1(), sha2(), etc. see php.net for the details.
  5. ?>