Cryptography
base64_encode
يشفر بايتات Lua string باستخدام Base64 encoder، مع = padding وبدون فواصل اسطر.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
يشفر بايتات Lua string باستخدام Base64 encoder، مع = 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"))