Which code should you use?

Posted by: Pdfprep Category: 70-483 Tags: , ,

DRAG DROP

You have the following code.

string MessageString = “This is the original message!”;

You need to store the SHA1 hash value of MessageString in a variable named HashValue.

Which code should you use? Develop the solution by selecting and arranging the required code blocks in the correct order. You may not need all of the code blocks.

Answer:

Explanation:

byte[] HashValue;

string MessageString = "This is the original message!";

//Create a new instance of the UnicodeEncoding class to

//convert the string into an array of Unicode bytes.

UnicodeEncoding UE = new UnicodeEncoding();

//Convert the string into an array of bytes.

byte[] MessageBytes = UE.GetBytes(MessageString);

//Create a new instance of the SHA1Managed class to create

//the hash value.

SHA1Managed SHhash = new SHA1Managed();

//Create the hash value from the array of bytes.

HashValue = SHhash.ComputeHash(MessageBytes);

Reference: Ensuring Data Integrity with Hash Codes

https://msdn.microsoft.com/en-us/library/f9ax34y5(v=vs.110).aspx

Leave a Reply

Your email address will not be published.