Cryptography
base64_encode
使用 Base64 encoder 编码 Lua string 的字节,使用 = padding 且不插入换行。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
使用 Base64 encoder 编码 Lua string 的字节,使用 = padding 且不插入换行。
base64_encode(data: string): string
base64encodebase64.encodecrypt.base64.encodecrypt.base64_encodecrypt.base64encodelocal encoded = base64_encode("hello world")
print(encoded)
print(base64encode("hello world"))
print(base64.encode("hello world"))