answersLogoWhite

0

There is the vigenère cipher, which is pretty strong but relativeley easy to "hand-code"

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is the best search algorithm to use for a sorted array?

The best search algorithm to use for a sorted array is the binary search algorithm.


What is the best slogan for decoding science nullifying fiction amplifying action?

Unveiling Truth, Igniting Change: Decoding, Nullifying, Amplifying.


What is the best public-key cryptography algorithm and why?

RSA (Rivest, Shamir, and Adelman) is the best public key algorithm.


Which is the best shortest path algorithm?

dijkstra's algorithm (note* there are different kinds of dijkstra's implementation) and growth graph algorithm


What is best fit algorithm?

ytijkj


Is Dijkstra's algorithm a greedy algorithm?

Yes, Dijkstra's algorithm is a greedy algorithm because it makes decisions based on the current best option without considering future consequences.


Which sorting algorithm is considered the best for efficiency and performance?

The quicksort algorithm is considered the best for efficiency and performance among sorting algorithms.


One very best property of algorithm?

One of the best property of an algorithm is that it is simple. It can not be too long and ambiguous, it has to be straightforward, with understandable variables as used also in a pseudocode.


How is time complexity of an algorithm calculated?

The usual definition of an algorithm's time complexity is called Big O Notation. If an algorithm has a value of O(1), it is a fixed time algorithm, the best possible type of algorithm for speed. As you approach O(∞) (a.k.a. infinite loop), the algorithm takes progressively longer to complete (an algorithm of O(∞) would never complete).


What is the difference between best worst and average case complexity of an algorithm?

These are terms given to the various scenarios which can be encountered by an algorithm. The best case scenario for an algorithm is the arrangement of data for which this algorithm performs best. Take a binary search for example. The best case scenario for this search is that the target value is at the very center of the data you're searching. So the best case time complexity for this would be O(1). The worst case scenario, on the other hand, describes the absolute worst set of input for a given algorithm. Let's look at a quicksort, which can perform terribly if you always choose the smallest or largest element of a sublist for the pivot value. This will cause quicksort to degenerate to O(n2). Discounting the best and worst cases, we usually want to look at the average performance of an algorithm. These are the cases for which the algorithm performs "normally."


Which is the Best key exchange cryptographic algorithm?

Elliptical Curve Cryptography.


Is there an algorithm for the Travelling Salesman problem?

Yes,there is an obvious algorithm to test each possible trip and find the best one. The trouble is the exponential run-time.