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.
ينشئ 32 بايت خام عشوائي باستخدام random byte generator ويعيدها Base64-encoded كسلسلة Lua.
crypt.generatekey(): string
key
string
local key = crypt.generatekey() local raw = base64_decode(key) local ciphertext, iv = crypt.encrypt("hello world", key) print(key) print(#raw) print(ciphertext, iv)