Comparison of DES, Triple DES, AES, blowfish encryption for data

前端 未结 8 2159
礼貌的吻别
礼貌的吻别 2020-11-28 01:10

Does anyone have pros and cons together for comparing these encryption algorithms ?

相关标签:
8条回答
  • 2020-11-28 01:35

    All of these schemes, except AES and Blowfish, have known vulnerabilities and should not be used.
    However, Blowfish has been replaced by Twofish.

    0 讨论(0)
  • 2020-11-28 01:38

    Although TripleDESCryptoServiceProvider is a safe and good method but it's too slow. If you want to refer to MSDN you will get that advise you to use AES rather TripleDES. Please check below link: http://msdn.microsoft.com/en-us/library/system.security.cryptography.tripledescryptoserviceprovider.aspx you will see this attention in the remark section:

    Note A newer symmetric encryption algorithm, Advanced Encryption Standard (AES), is available. Consider using the AesCryptoServiceProvider class instead of the TripleDESCryptoServiceProvider class. Use TripleDESCryptoServiceProvider only for compatibility with legacy applications and data.

    Good luck

    0 讨论(0)
提交回复
热议问题