crypt.base64decode
Decodes a Base64 string back to raw bytes.
function crypt.base64decode(datadatastringThe Base64 string to decode.: string): stringstringThe decoded raw bytes.Usage
Decode
print(crypt.base64decode("SGVsbG8sIFdvcmxkIQ==")) --> Hello, World!