Habbo Base64 Encoder


/ Published in: Python
Save to your folder(s)

Codificador de una string a su codigo en Base64, basado en el codigo del TFHA X y traducido por mi.


Copy this code and paste it in your HTML
  1. import math
  2.  
  3. ############################
  4. ############################
  5. #### #### #### ####
  6. #### #### #### ####
  7. #### #### #### ####
  8. #### #### ####
  9. #### #### ####
  10. #### #### ############
  11. #### #### #### ####
  12. #### #### #### ####
  13. ############################
  14. ############################
  15.  
  16. print "Habbo Base64 Encoder.\nPor Cesar Vasquez C (AKA Heellxz)\n"
  17. a = raw_input(">>Ingresa String: ")
  18. i = len(a)
  19. encodeB64 = chr(int(math.floor((i/64) + 64))) + chr(int((i%64)+64))
  20.  
  21. print "Base64: " + encodeB64

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.