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 ..
Can any one tell me why AES encryption Algorithm is more efficient to use
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.