answersLogoWhite

0


Best Answer

D: md5

User Avatar

Wiki User

โˆ™ 14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

โˆ™ 13y ago

MD5

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which hash algorithm is used to verify the integrity of data that has been transmitted over a network and creates a 128-bit digest from variable length plaintext?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is algorithm to write algorithm to the program to access a pointer variable in structure?

Here is the algorithm of the algorithm to write an algorithm to access a pointer in a variable. Algorithmically.name_of_the_structure dot name_of_the _field,eg:mystruct.pointerfield


What does count equals count plus 1 and total equals total plus 1 in algorithm means?

This is an instruction to increment the value of a variable by 1 (in this case, either the variable count or the variable total).


How do you get the square roots using algorithm?

An algorithm is process or set of rules for doing something If we are looking for square rots which are integers then an algorithm might look like this Put the number whose root is sought into a variable - the dividend. Put 2 into a variable - the divisor Begin a loop divide the dividend by the divisor put the result into a variable - the quotient if the quotient = the divisor then the quotient is the square root of the divident else, add 1 to the divisor next loop


Help designing an algorithm?

-Start -Read the full name -Save the index of the "comma" to i -Store the characters from i+1 to the end of the string to another variable -Print the variable followed by three spaces -Stop


Bubble sort Extra or in space?

Bubble sort is an "in place" algorithm. Other than a temporary "switch" variable, no extra space is required.


Algorithm that prompts a user to entre his or her height and store the user input in a variable height?

int height; print("Enter height"); height=getString();


What are the characteristics of the advance symmetric block cipher?

Some characteristics of an Advanced Symmetric Block Cipher are key dependent S-boxes, data dependent rotation, variable plaintext or ciphertext block length, and operations on both plain and ciphered data.


Design an algorithm that prompts the user to enter his or her height and stores the user's input in a variable name height?

int height; print("Enter height"); height=getString();


Translating an algorithm into a programming language is called?

Translating an algorithm into a programming language is called coding. A variable declaration tells the operating system to allocate storage space in RAM.


Design an algorithm that prompts the user to enter his or her height and stores the user's omit om a variable named height?

enter five feet eight inchies and store the input


What is efficent Algorithm?

Basically it depends on your condition of the program but one should have these things in mind while making/writing an algorithm..... 1. Use minimum variable as much as possible. 2. Try to use the pointers instead of array's to allocate the memory at the run time. 3. Always check for the time and space complexity for the algorithm. 4. Use the exact data structure for the given problem.


Write a algorithm for multiplication tabel for an integer?

Algorithm: 1. From the user collect the integer whose table is required 2. Use a loop with loop counter starting with 0x01 and ends till the table value is required 3. start multiplication the input number with the loop variable and print the result.