Good day, I wonder if there is any way to prevent this method encrypted without spaces ?
local openssl = require( “plugin.openssl” )
local cipher = openssl.get_cipher ( “aes-256-cbc” )
local mime = require ( “mime” )
local key = “ethos”
function encript(input)
local encryptedData = mime.b64 ( cipher:encrypt ( data, key ) )
return encryptedData
end