4
A colleague told me that he created an encryption class that implements 4 algorithms:
Tripledescryptoserviceprovider Class
Descryptoserviceprovider Class
Rc2cryptoserviceprovider Class
He told me that he made, or would make, one encryption on the other, for example:
- would receive a text, would encrypt with the first algorithm
- would take the encrypted result, and would encrypt with a second algorithm
When I heard this, I found it strange. I had never heard anything like it. I researched some terms in English and found nothing. I wondered if this would be another gambit in trying to create a new encryption, or if it would be something well thought out that would really be hard to break.
I don’t think you’ll be as performative as you have to process two encryptions. Using this technique increases security or the correct is to opt for only one algorithm?
Normal. We also have our own class to encrypt and decrypt and it is not rare that information is encrypted several times. And in this case the algorithm is the same, but executed more than once.
– Reginaldo Rigo