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"))