Cryptography
base64_decode
Base64 decoder로 Base64 입력을 디코드하고 디코드된 바이트를 Lua string으로 반환합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Base64 decoder로 Base64 입력을 디코드하고 디코드된 바이트를 Lua string으로 반환합니다.
base64_decode(data: string): string
base64decodebase64.decodecrypt.base64.decodecrypt.base64_decodecrypt.base64decodelocal encoded = base64_encode("hello world")
local decoded = base64_decode(encoded)
print(decoded)
print(base64decode(encoded))
print(base64.decode(encoded))