• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
Decodes a string that has previously been Base64-encoded.
var data = 'Suite.js'; writeln; writeln( 'Data: ' ); writeln( data ); writeln; var encoded = base64Encode( data ); writeln( 'Base64 Encoded: ' ); writeln( encoded ); writeln(); var decoded = base64Decode( encoded ); writeln( 'Base64 Decoded: ' ); writeln( decoded ); writeln;
© Copyright 2025 Tim Dietrich. | Legal Info