File Encryption Filter
File encryption is the science of writing the contents of a file in a secret code. Your encryption
Although there are complex encryption techniques, you should come up with a simple one of your own. For example, you could read the first file one character at a time and add 10 to the ASCII code of each character before it is written to the second file.
Want to see the full answer?
Check out a sample textbook solutionChapter 13 Solutions
Starting Out with C++: Early Objects (9th Edition)
Additional Engineering Textbook Solutions
Starting Out with Python (4th Edition)
Starting Out With Visual Basic (8th Edition)
Java: An Introduction to Problem Solving and Programming (7th Edition)
Introduction To Programming Using Visual Basic (11th Edition)
Modern Database Management (12th Edition)
Starting Out with Java: From Control Structures through Data Structures (3rd Edition)
- When importing a Text file, why is it important to move through each step of the Text Import Wizard?arrow_forwardWhy is it vital to make sure that a file is designed correctly? What difference does it make whether you know how the data in your text file is arranged if you already have it?arrow_forwardWhat can you determine about a file by looking at it's properties ?arrow_forward
- Why does it matter how a file is laid out? Why is it important to understand the structure of the information in your text file?arrow_forwardWhat should you do if you unintentionally delete a file and then decide that you want to retrieve it?arrow_forwardWord List File Writer: Write a program that asks the user how many words they would like to write to a file, andthen asks the user to enter that many words, one at a time. The words should be writtento a file (in python)arrow_forward
- Why is it important for a program to close an open file as soon as it is done using the file? Give two reasons.arrow_forwardThis is the most effective file organization method in which one must handle all data records in a file namedarrow_forwardCreate file Write data Read data Delete data And print the messages through System.out.println. Use buffer reader to read file Programming language : Javaarrow_forward
- Python The program should open a specified text file, read its contents, then use the dictionary to writean encrypted version of the file’s contents to a second file. Each character in the second file should contain the code for the corresponding character in the first file. Your program contains both encryption AND decryption functions. Please do not put them in separate programs. Your program provides a MENU that offers the user a choice to encrypt or decrypt the file and call the respective function. Your encoder function will use the Caesar Ciphe to translate the file Your encoder function will first convert all input characters to upper case. This means that the output of encrypted text should be in CAPITALS. You must use a string method to convert! Your implementation must use a dictionary Your implementation must use string methods for converting casearrow_forwardA file's physical description differs from its logic in the following ways:arrow_forwardPERL PROGRAMMING Write a perl script that takes a text file and displays the number of words of each length in the file. For example, if the test file is: my favorite food is apples the output would be: 2: 2 4: 1 6: 1 8: 1arrow_forward