11 lines
270 B
Python
11 lines
270 B
Python
import base64
|
|
|
|
flag = b"flag{11111111111}"
|
|
|
|
plain_text = b"Base64 is a group of binary-to-text encoding schemes that represent binary data. And flag is " + flag
|
|
|
|
cipher = base64.b64encode(plain_text)
|
|
|
|
plain_text = base64.b64decode(cipher)
|
|
print(cipher)
|
|
print(plain_text) |