answersLogoWhite

0


Best Answer

Yes, there are several algorithms for data compression, that is, store data in less space than it usually needs. However, not all data can be encrypted. Encryption basically takes advantage of some sort of repetition in data; once all repetition has been eliminated, data can be encrypted no more.

Yes, there are several algorithms for data compression, that is, store data in less space than it usually needs. However, not all data can be encrypted. Encryption basically takes advantage of some sort of repetition in data; once all repetition has been eliminated, data can be encrypted no more.

Yes, there are several algorithms for data compression, that is, store data in less space than it usually needs. However, not all data can be encrypted. Encryption basically takes advantage of some sort of repetition in data; once all repetition has been eliminated, data can be encrypted no more.

Yes, there are several algorithms for data compression, that is, store data in less space than it usually needs. However, not all data can be encrypted. Encryption basically takes advantage of some sort of repetition in data; once all repetition has been eliminated, data can be encrypted no more.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

Yes, there are several algorithms for data compression, that is, store data in less space than it usually needs. However, not all data can be encrypted. Encryption basically takes advantage of some sort of repetition in data; once all repetition has been eliminated, data can be encrypted no more.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is there a way algorithm to encrypt more numbers in one number and can decrypt?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Algorithm for hill cipher?

Hill Cipher is a cryptographic algorithm to encrypt and decrypt an alphabetic text. In this cipher, each letter is represented by a number (eg. A = 0, B = 1, C = 2). To encrypt a message, each block of n letters (considered as an n -component vector) is multiplied by an invertible n × n matrix, against modulus 26.


How do you decrypt 3 digit numbers?

You can use C++ program to decrypt 3 digit number


What is the algorithm for adding negative numbers?

subtract the positive number


Write an algorithm to check whether a number is a prime number or not?

You can write out this algorithm. This will then be programmed into the device to make determining prime numbers easier.


Is there an algorithm that yields only prime numbers?

What exactly do you mean "yields only prime numbers"? If you mean a formula that when given the numbers n=1, 2, 3, ... and so on generates the nth prime number (or a different prime number for each n) then no. If you mean an algorithm whereby a number can be tested to be a prime number then yes. (Using this prime_test algorithm, a simple algorithm can be written that would supply numbers one at a time to it and use its result to decide whether to yield the tested number or not, only yielding those numbers which pass the test.)


How to write an algorithm that accepts five numbers and displays the sum and average of the numbers?

1.Start Algorithm 2.Enter first number 3.Enter second number 4.Enter third number 5.Enter fourth number 6.Enter fifth number 7.Add five number 8.display five number / 2 9.Display result 10.End Algorithm


Write an algorithm and draw a corresponding flowchart to search a number in the given list of numbers and also display its position?

please give me an algorithm and a corresponding flow chart that displays list of numbers from 1 to 20.


What type of number generator is used to generate social insurance numbers in Canada?

The Luhn algorithm is used.


Algorithm and flowchart of odd numbers 1 to 100?

algorithim and flow chart of odd number 1 and 50


Is the sum of two natural numbers always a natural number?

Yes. You know this is true because you learned a process-- an "algorithm"--for adding two numbers together, and if you start with two whole numbers, the result is also a whole number.


How is multiplying by a 3 digit numbers similar to multiplying by a 2 digit number?

6


What is the algorithm of LCM of more than 3 numbers?

If you use methods based on prime factors, it is the same whether you have 2, 3, or more numbers: find all the factors that occur in any of your numbers. If you use a method based on Euclid's Algorithm (that is, lcm(a, b) = a x b / gcf(a, b), where you find the gcf with Euclid's Algorithm), then you can find the lcm for two numbers at a time. For example, to get the lcm of four numbers, find the lcm of the first two, then the lcm of the result and the third number, than the lcm of the result and the fourth number.