Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
random byte generator로 임의 바이트를 생성하고 Base64-encoded Lua string으로 반환합니다.
crypt.generatebytes(size: number): string
size
number
encoded
string
local encoded = crypt.generatebytes(16) local raw = base64_decode(encoded) print(encoded) print(#encoded) print(#raw)