Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in python Implement a simple encryption algorithm that works as follows The algorithms uses a numerical private key named key Each character in the original

in python

Implement a simple encryption algorithm that works as follows

  • The algorithms uses a numerical private key named key
  • Each character in the original text is encrypted as the character resulting from xoring the ASCII code of that character with private_key. For example to encrypt A

enc_char = chr(ord (A) ^ key)

  1. Write a function named ecrypt_file that takes as argument the file name to be encrypted, the name of the output file (where to store the encrypted text) and the encryption key. The function opens the first file, and encrypted the text according to the logtim above and stores the encrypted text in the second file

  1. Write a multithreaded program that attempts to encrypt the contents of 10 different files concurrently using the function ecrypt_file defined in the previous step. you need to create one thread of execution to process each file. Your program asks the user to input the names of the text files to be encrypted

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Administrator Limited Edition

Authors: Martif Way

1st Edition

B0CGG89N8Z

More Books

Students also viewed these Databases questions

Question

=+1.5. 1 The Cantor set C can be defined as the closure of A3(1).

Answered: 1 week ago

Question

6. How do histories influence the process of identity formation?

Answered: 1 week ago