Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local CryptLibrary, KeyLength = crypt, 32
- local PrintFunction = print
- local function GenerateEncryptionKey(KeyLength)
- return CryptLibrary.generatekey(KeyLength)
- end
- local DecodedResult = CryptLibrary.base64decode(GenerateEncryptionKey(KeyLength))
- PrintFunction(DecodedResult)
Add Comment
Please, Sign In to add comment