Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我为什么在加密大块数据的情况下,AES 加密算法比 RSA 算法更有效?提前致谢 ..
与 AES 相比,RSA 在计算上非常昂贵。它涉及非常大的数学,而 AES 可以通过相对简单的位运算来实现。数据越大,你越感到痛苦。
一个好的折衷方案是使用 RSA 加密对称密钥,然后将其用于对较大数据的 AES 加密。
填充是 RSA 的一个重要问题。请注意,不建议为 PKCS 填充使用超过最大模数长度的 40%,并且对较新的 RSA-PSS 或 OAEP 填充方案的简短了解会让您相信,对称加密要容易得多。