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))