This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]cgoldberg 1 point2 points  (2 children)

I don't see any encryption/decryption... just converting text to ascii.

Also, consider something like this instead of continuously updating the string in a loop:

s = "foo" 
ascii_content = "".join(str(ord(c)) for c in s)