Ejemplo n.º 1
0
        public static void encriptarArchivo(string filename)
        {
            string content_file           = Utilities.fileToString(filename);
            string encrypted_content_file = encriptar(content_file);

            Utilities.writeSingleLineToFile(filename, encrypted_content_file);
        }