RijndaelManaged 支持 128-256 位密钥,默认构造函数生成器的密钥大小是多少?
对于新的 RijndaelManaged(),文档称它支持 128 位和最多 256 位的密钥。
当您实例化 new RijndaelManaged() 时,它会为您创建 Key 和 IV。
默认大小是多少,128 位?
For new RijndaelManaged(), the documentation says it supports keys of 128 bits and up to 256 bits.
When you instantiate new RijndaelManaged(), it creates the Key and IV for you.
What size does it default to, 128 bits?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认密钥大小为 256 位,默认块大小为 128 位。
The default key size is 256 bits, while the default blocksize is 128 bits.