Can any one tell me why AES encryption Algorithm is more efficient to use than RSA Algorithm in case of encryption large block size of data ? thanks in advance ..
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
RSA is very computationally expensive by comparison with AES. It involves mathematics with very large numbers, whilst AES can be implemented with relatively simple bit operations. The larger the data, the more you feel the pain. A good compromise is to use RSA to encrypt the symmetric key that is then used in AES encryption of the larger data. |
|||||||||
|
|
Padding is an important issue for RSA. Note, that it is not recommended to use more than 40% of the maximum modulus length for PKCS padding and a short glimpse on the newer RSA-PSS or OAEP padding schemes will convince you, that symmetric encryption is considerably easier. |
|||
|
|