Crypto - lainz/lainzcodestudio GitHub Wiki
#Crypto.BlowfishDecrypt Creates a decrypted copy of a blowfish encrypted file.
Parameters: Source, Destination, Key
Crypto.BlowfishDecrypt("C:\\temp\\file.txt", "C:\\temp\\file-decrypted.txt", "Password")
#Crypto.BlowfishDecryptString Decrypts a string that was encrypted using the Crypto.BlowfithEncryptString function.
Parameters: EncryptedText, Key
result_string = Crypto.BlowfishDecryptString(EncryptedText, "Password")
#Crypto.BlowfishEncrypt Creates a blowfish encrypted copy of a file.
Parameters: Source, Destination, Key
Crypto.BlowfishEncrypt("C:\\temp\\file.txt", "C:\\temp\\file-encrypted.txt", "Password")
#Crypto.BlowfishEncryptString Blowfish encrypts a string.
Parameters: Text, Key
result_string = Crypto.BlowfishEncryptString("My secret string", "Password")