Write a simple encryption/decryption program. Function encrypt takes a character pointer as a parameter and uses pointer-subscript notation to change the value in the address pointed to by adding 1 to it. Function decrypt takes a character pointer as a parameter and uses pointer notation to change the value in the address pointed to by

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter10: Pointers
Section: Chapter Questions
Problem 3PP
icon
Related questions
Question

CODE IN C++ PLEASE....

subtracting 1 from it. Function main calls functions encrypt and decrypt and prints the
encrypted string.
// A simple encryption/decryption program
#include "stdafx.h"
#include <iostream>
using namespace std;
// write the prototype for function encrypt
// write the prototype function decrypt
int main()
{
// create a string to encrypt
char string[] = "this is a secret!";
cout « "Original string is : "
« string <« endl;
encrypt(string);
cout « "Encrypted string is : " « string <« endl;
decrypt(string);
cout « "Decrypted string is : " «string<< endl;
return 0;
}
// encrypt data
void encrypt(char e[])
{
// Write implementation for function encrypt
} // end function encrypt
// decrypt data
void decrypt(char *ePtr)
{
// Write implementation for function decrypt
} // end function decrypt
Sample output
E CAWINDOWS\system32\cmd.exe
Original string is : this is a secret!
Encrypted string is : uijt!jt!b!tfdsfu"
Decrypted string is : this is a secret!
Press any key to continue . .
Transcribed Image Text:subtracting 1 from it. Function main calls functions encrypt and decrypt and prints the encrypted string. // A simple encryption/decryption program #include "stdafx.h" #include <iostream> using namespace std; // write the prototype for function encrypt // write the prototype function decrypt int main() { // create a string to encrypt char string[] = "this is a secret!"; cout « "Original string is : " « string <« endl; encrypt(string); cout « "Encrypted string is : " « string <« endl; decrypt(string); cout « "Decrypted string is : " «string<< endl; return 0; } // encrypt data void encrypt(char e[]) { // Write implementation for function encrypt } // end function encrypt // decrypt data void decrypt(char *ePtr) { // Write implementation for function decrypt } // end function decrypt Sample output E CAWINDOWS\system32\cmd.exe Original string is : this is a secret! Encrypted string is : uijt!jt!b!tfdsfu" Decrypted string is : this is a secret! Press any key to continue . .
Write a simple encryption/decryption program. Function encrypt takes a character
pointer as a parameter and uses pointer-subscript notation to change the value in the
address pointed to by adding 1 to it. Function decrypt takes a character pointer as a
parameter and uses pointer notation to change the value in the address pointed to by
Transcribed Image Text:Write a simple encryption/decryption program. Function encrypt takes a character pointer as a parameter and uses pointer-subscript notation to change the value in the address pointed to by adding 1 to it. Function decrypt takes a character pointer as a parameter and uses pointer notation to change the value in the address pointed to by
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning