Advertisement
kaitolegion

Encode_Md5

Nov 7th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. // Md5 Encoder Coded By Kaito Legion
  3. function banner() {
  4. @system("clear");
  5. print "Md5 Encode\n";
  6. }
  7. banner();
  8.  
  9. echo "Write your String to Encode: ";
  10. $domain = fgets(STDIN);
  11.  
  12. $encode = md5($domain);
  13.  
  14. echo "\nResult: ".$encode;
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement