Security Study/Source
Base 64 encoding
๐๐พ๐ฌ๐ฎ๐ฝ๐ฎ_๐ข๐ฝ๐ฎ๐ต๐ต๐ช
2015. 11. 21. 13:22
728x90
๋ฐ์ํ
- import base64
- str64=""
- str64=base64.b64encode(str64.encode('ascii'))
- for i in range(1,11):
- str64=base64.encodestring(str64)
- str64=str64.decode("utf-8")
- print(str64.replace("\n",""))
728x90
๋ฐ์ํ