Student Name: __________________
Class and Section __________________
Total Points (15 pts) __________________
Due: October 31, 2016 before the class
Project: File Encryption
CSCI 1302 Advanced Programming Principles
Armstrong Atlantic State University
Problem Description:
Suppose an encrypted file was created by adding 5 to every byte in the file. Write
a program to decode the encrypted file. Your program should prompt the user to
enter an input file name and an output file name and should save the unencrypted
version of the input file to the output file.
What should you do?
1. Run the following program to create an encrypted file.
(Delete this program when you print out this project to save paper.)
import java.util.Scanner;
import java.io.*;