answersLogoWhite

0


Best Answer

MD5 isn't a encryption algorithm, it's a hashing algorithm.

Encryption will 'hide' the meaning of the encrypted text, while MD5 will 'add up' all the text to come up with a number. This number can be compared to another time this file was 'added up', to provide a simple kind of check to see if the text has been changed or if it is the same.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which is better encryption algorithm among DES Blowfish and MD5?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Write a c program to find smallest among three using function with pointers?

Please visit http://talentsealed.blogspot.com/2009/10/to-find-smallest-among-three-using.htmlfor answer.


Write an algorithm and draw a corresponding flowchart to find the greatest number and its position among the 6 given numbers?

Algorithm Step1: Read A, B, C Step2: If A > B is True, then check whether A > C, if yes then A is greatest otherwise C is greatest Step3: If A > B is False, then check whether B > C, if yes then B is greatest otherwise C is greatest Give the Flowchart Answer


Advantages of the backtracking algorithm?

Backtracking algorithmn finds minimal path among the all.The main advantage of back tracking algorithmn as compare with greedy is to find minimal distance.In greedy ,it does.t know the optimal solution.It is used in Google earth.


Which search algorithm is best?

The question is a bit too vague for a meaningful answer, it depends on what you are searching and what you are looking for.For search in an unsorted list, there is no better alternative than the naive algorithm of looking at every single element.For search in a sorted list (like a phone book sorted on name) binary search is much more efficient.For string search, like used in biology to find DNA matches, there are dedicated algorithms that deal exclusively with string matching.For graph search, A* ("A star") is among the better.For more general search problems there are a whole host of search methods that work better than others in particular domains. But so far, there is no ultimate winner that is best for everything. The best ones are generally custom made for one particular problem, like the best known algorithm for the Travelling Salesman Problem.See also related link.


What are some potential inefficiencies when using the bubble sort algorithm?

Although bubble sort is one of the simplest sorting algorithms to understand and implement, its O(n2)complexity means it is far too inefficient for use on lists having more than a few elements. Even among simple O(n2)sorting algorithms, algorithms like insertion sort are usually considerably more efficient.

Related questions

Among best and breadth first search which algorithm has the property that if a wrong path is selected it can be corrected afterwards?

Best-first.


Does the Data Encryption Standard DES have perfect secrecy?

DES is a widely-used method of data encryption using a private key that was judged so difficult to break by the U.S. government that it was restricted for exportation to other countries. There are 72,000,000,000,000,000 (72 quadrillion) possible encryption keys that can be used. For each given message, the key is chosen at random from among this enormous number of keys.


Do you guys have among us or ROBLOX?

Among us is way better guys


Write a c program to find smallest among three using function with pointers?

Please visit http://talentsealed.blogspot.com/2009/10/to-find-smallest-among-three-using.htmlfor answer.


What are some of the newest search engines?

Among the newest are Bl ekko which has a dimensional type of algorithm allowing you to interact with it much more that the more traditional ones out.


Among men and women better manager?

how does the men are better manager?


Are adults or children given a better chance for survival from lymphoma?

The survival rate among children is definitely better than among older people.


What is searching in an algorithm?

seraching of algorithm is finding an item with specified properties among a collection of items. The items may be stored individually as records in a database; or may be elements of a search space defined by a mathematical formula or procedure, such as the roots of an equation with integer variables; or a combination of the two, such as the Hamiltonian circuits of a graph


Disadvantages of personal computer?

There are so many disadvantage of a personal computer. Some of them include limited storage, lack of encryption from serves, vulnerable to virus and malware attacks among others.


Does Dijkstra's Algorithm work when there might be arcs with negative weights?

No, Dijkstra's algorithm can not be used when there are negative arc lengths. In Dijkstra's, the vertex that can be reached from the current set of labeled vertices and that of having the minimum weight among the alternatives is permanently labeled in that iteration. Since a negative arc weight would result in changing the label of a pre-permanently-labeled vertex, the algo collapses. Bellman's algorithm is used with negative arc lengths.


What is an approximation algorithm?

An algorithm that can find an approximate result quickly when an exact result would be too expensive to calculate.As an example, if you wanted to find the largest number among millions of numbers (and these numbers where somehow very expensive to find or operate on), you could sample a thousand of them, have a look at the statistical distribution of those thousand numbers, and say that the maximum among all the numbers is within such-and-such a range with such-and-such probability.You could say that a public poll uses an approximation algorithm - instead of asking everyone in the country, you ask a small sample and extrapolate from the result using statistical methods.See related link.


Write a algorithm and flowchart to find largest among N numbers?

Max = 0For K = 1 to NIf Number(K) > Max then Max = Number(K)Next KPrint Max