AES 密钥是否足够好?
Is the AES key good enough?
当调用System.Security.Cryptography.Aes.Create(algorithmName)
方法时,会生成一个新的密钥和IV。这些够用吗?
这些值可以安全使用。像这样的框架的全部目的是使加密随机值的生成更容易。 Aes.Create()
也用于 sample code
此外,documentation 描述了 Aes.Create()
:
Creates a cryptographic object that is used to perform the symmetric
algorithm.
这个库由 Microsoft 维护,我认为可以肯定地说它们的值 "safe" 可以使用。
当调用System.Security.Cryptography.Aes.Create(algorithmName)
方法时,会生成一个新的密钥和IV。这些够用吗?
这些值可以安全使用。像这样的框架的全部目的是使加密随机值的生成更容易。 Aes.Create()
也用于 sample code
此外,documentation 描述了 Aes.Create()
:
Creates a cryptographic object that is used to perform the symmetric algorithm.
这个库由 Microsoft 维护,我认为可以肯定地说它们的值 "safe" 可以使用。