Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Business Management Expert

For this project you will be writing methods of encrypting and decrypting text.

PART 1 - NORMALIZE TEXT

The first thing we will do is normalize our input message so that it's easier to work with.

Using a method called normalizeText() which does the following:

1. Removes all the spaces from your text

2. Remove any punctuation (. , : ; ' " ! ? ( ) )

3. Turn all lower-case letters into upper-case letters

4. Return the result.

The call

normalizeText("This is some "really" great. (Text)!?")

should return

"THISISSOMEREALLYGREATTEXT"

PART 2 - CAESAR CIPHER

Next we'll be writing a Caesar Cipher. The Caesar cipher is just about the simplest encryption algorithm out there. A Caesar encription "shifts" each individual character forward by a certain number or "key". Each letter in the alphabet is shifted to the letter in the alphabet that is "key" places past the original letter. With a shift value of +1, the string "ILIKEZOOS" would be rendered as "JMJLFAPPT."

Using a method called caesarify that takes two parameters. The first argument is a string you want to encrypt, and the second is an integer that contains the shift value or "key". The function should return a string, which is the input string encrypted with the Caesar cypher using the shift value passed in its second argument. You may assume that the input string is normalized.

  • Note that the alphabet "wraps around", so with a shift value of +1 the "Z" in ZOOS became an A.
  • You can also have negative shift values, which cause the alphabet to previous letters. With a -1 shift, the string "ILIKEAPPLES" would turn into "HKHJDZOOKDR."

We will provide you with a function called shiftAlphabet. This function takes one argument, an integer to specify the shift value, and returns a string, which is the uppercase alphabet shifted by the shift value. So if you call shiftAlphabet(2), you will get back the following string: "CDEFGHIJKLMNOPQRSTUVWXYZAB"

Here is the implementation for shiftAlphabet, which you can just paste into your java file:

public static String shiftAlphabet(int shift) {

   int start = 0;

   if (shift < 0) {

       start = (int) 'Z' + shift + 1;

   } else {

       start = 'A' + shift;

   }

   String result = "";

   char currChar = (char) start;

   for(; currChar <= 'Z'; ++currChar) {

       result = result + currChar;

   }

   if(result.length() < 26) {

       for(currChar = 'A'; result.length() < 26; ++currChar) {

           result = result + currChar;

       }

   }

   return result;

}

PART 3 - CODEGROUPS

Traditionally, encrypted messages are broken into equal-length chunks, separated by spaces and called "code groups."

Using a method called groupify which takes two parameters. The first parameter is the string that you want to break into groups. The second argument is the number of letters per group. The function will return a string, which consists of the input string broken into groups with the number of letters specified by the second argument. If there aren't enough letters in the input string to fill out all the groups, you should "pad" the final group with x's. So groupify ("HITHERE", 2) would return "HI TH ER Ex".

  • You may assume that the input string is normalized.
  • Note that we use lower-case 'x' here because it is not a member of the (upper-case) alphabet we're working with. If we used upper-case 'X' here we would not be able to distinguish between an X that was part of the code and a padding X.

PART 4 - PUTTING IT ALL TOGETHER

Using a function called encryptString which takes three parameters: a string to be encrypted, an integer shift value, and a code group size. Your method should return a string which is its cyphertext equivalent. Your function should do the following:

  • Call normalizeText on the input string.
  • Call obify to obfuscate the normalized text.
  • Call caesarify to encrypt the obfuscated text.
  • Call groupify to break the cyphertext into groups of size letters.
  • Return the result

PART 5 - HACKER PROBLEM - DECRYPT

This part is not required for course credit.

Using a method called ungroupify which takes one parameter, a string containing space-separated groups, and returns the string without any spaces. So if you call ungroupify("THI SIS ARE ALL YGR EAT SEN TEN CEx") you will return "THISISAREALLYGREATSENTENCE"

Now using a function called decryptString which takes three parameters: a string to be decrypted and the integer shift value used to encrypt the string, and returns a string which contains the (normalized) plaintext. You can assume the string was encrypted by a call to encryptString().

So if you were to call

String cyphertext = encryptString("Who will win the election?", 5, 3);

String plaintext = decryptString(cyphertext, 5);

... then you'll get back the normalized input string "WHOWILLWINTHEELECTION".

Business Management, Management Studies

  • Category:- Business Management
  • Reference No.:- M92819027
  • Price:- $25

Priced at Now at $25, Verified Solution

Have any Question?


Related Questions in Business Management

Consider yourself the senior manager of the irs tax exempt

Consider yourself the senior manager of the IRS Tax Exempt Organization when the situation described above occurred. Describe in detail how you would apply the Four Steps of Feedback Control to monitor and regulate the o ...

Need help with a essay with the following phrase for

Need help with a essay with the following phrase for analyzing : " Capitalism is at the heart of how people and organisations are managed in contemporary society" May i ask for a better explanation of the question? Also ...

Total quality management involves a continuous improvement

Total quality management involves a continuous improvement approach. 1. How is continuous improvement related to innovation? 2. What is breakthrough innovation? 3. What are the risks and rewards associated with innovatio ...

Which generic competencies are strong in which of the value

Which generic competencies are strong in which of the value chain elements for Google company and why? (operations, sales& marketing, distribution, service, net profit margin??)

Examples of national quality control models whats are the

Examples of national quality control models? Whats are the key concepts?

Distinguish between secondary and primary methods of data

Distinguish between secondary and primary methods of data collection. Is it possible to use secondary data methods as substitutes of primary methods? Justify the answer with suitable illustrations and using data from dif ...

What is the purpose of using a diagnostic instrumentmodel

What is the purpose of using a diagnostic instrument/model to help manage change. Describe the key aspects that an instrument/model should effectively identify or outline in order to facilitate change.

Nordstrom inc is a seattle-based department store rivaling

Nordstrom Inc. is a Seattle-based department store rivaling the likes of Saks Fifth Avenue, Neiman Marcus, and Bloomingdale's. Nordstrom is a Hall of Fame member of  Fortune  magazine's "100 Best Companies to Work For" l ...

Youre a tourist visiting new york and youve budgeted 1400

You're a tourist visiting New York, and you've budgeted $1400 to spend on hoodies from Supreme and BAPE. Your friends have told you that a hoodie costs $350 at either store, and you plan to buy 2 of each. When you arrive ...

What are the similarities and differences between emotions

What are the similarities and differences between emotions and moods? What are the basic emotions and the basic mood dimensions?

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As