Алиасы
base64decodebase64.decodecrypt.base64.decodecrypt.base64_decodecrypt.base64decode
Аргументы
string
обязательно
Ввод Base64, передаваемый в Base64 decoder.
Возвраты
string
Декодированные байты, возвращаемые как Lua string с явной длиной.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Декодирует ввод Base64 через Base64 decoder и возвращает декодированные байты как 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))