Hello!
I'm trying to use Crypto.BlowfishEncrypt to encrypt all my files from a specific folder but I'm stagnant in this section and I don't have any idea how to solve it.
I'm trying to use Crypto.BlowfishEncrypt to encrypt all my files from a specific folder but I'm stagnant in this section and I don't have any idea how to solve it.
Code:
search_results = File.Find("d:\\", "*.*", true, false); for index, Fpath in pairs(search_results) do Crypto.BlowfishEncrypt(Fpath[1], dTable[1], "mypass"); end
Comment