使用System.Security.Cryptography.Rijndael或System.Security.Cryptography.Aes类中的方法GenerateKey(),CreateEncryptor(Byte [],Byte [])或CreateEncryptor()时,如何生成密钥?


它是否遵循RFC-2898中使用的方法?我只能假定它确实遵循RFC-2898,因为Rfc2898DeriveBytes也是System.Security.Cryptography命名空间中的类。

最佳答案

GenerateIV方法和GenerateKey方法都只生成所需长度的随机字节序列。他们不使用KDF。

09-10 09:44