MaxproGlitcher

CryptLibrary.base64decode

Jun 26th, 2026
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local CryptLibrary, KeyLength = crypt, 32
  2. local PrintFunction = print
  3.  
  4. local function GenerateEncryptionKey(KeyLength)
  5. return CryptLibrary.generatekey(KeyLength)
  6. end
  7. local DecodedResult = CryptLibrary.base64decode(GenerateEncryptionKey(KeyLength))
  8.  
  9. PrintFunction(DecodedResult)
Add Comment
Please, Sign In to add comment