Advertisement

RSA message limitation (with C++ source code)

Started by March 21, 2016 10:17 PM
20 comments, last by Bacterius 8 years, 5 months ago

Is it more secure to encrypt multiple times... like triple DES, but using RSA?

Is it more secure to encrypt multiple times... like triple DES, but using RSA?

If you need multiple layers of encryption to make an algorithm secure, it's probably not worth using. So, no. BTW, you very rarely encrypt actual messages with RSA, usually you encrypt a random key that is used to encrypt the bulk of the data with a faster symmetric algorithm like AES.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”

This topic is closed to new replies.

Advertisement