static void AESDecryptData(string pathToFile, string pathDecrypted, string password) { manage_aes aesChiff = new manage_aes(); aesChiff.DecryptFile(pathToFile, pathDecrypted, password); }
static void AESEncryptData(string password, string pathFile) { manage_aes aesChiff = new manage_aes(); aesChiff.EncryptFile(pathFile, password); }