Cryptography
crypt.generatebytes
ينشئ بايتات عشوائية باستخدام random byte generator ويعيدها Base64-encoded كسلسلة Lua.
Documentation Index
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.
crypt.generatebytes(size: number): string
local encoded = crypt.generatebytes(16)
local raw = base64_decode(encoded)
print(encoded)
print(#encoded)
print(#raw)