有 Java ECB 提供商吗?
有人知道 Java 中的 Rijndael-128 位 ECB 提供程序吗???
另外,AES-128bit 和 ECB 有什么区别?或者它们是相同的吗? (在网上其他地方找不到答案)
Anyone know of a Rijndael-128bit ECB provider in Java???
Also, what's the difference between AES-128bit and ECB? or are they the same? (couldn't find answer any where else online)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ECB 是一种使用分组密码(而不是密码本身)的方法。这不太好。这是一个相关问题如何选择AES 加密模式(CBC ECB CTR OCB CFB)?。
我怀疑如果你找到 AES 的实现(顺便说一下,它与 Rijndael 相同),它将可以配置为使用 ECB。
尝试以下方法来开始您的工作
ECB is a way of using a block cipher (not a cipher itself). It is not very good. Here is a related question How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?.
I suspect if you find an implementation of AES (which is the same as Rijndael, by the way), it will be configurable to use ECB.
Try the following to start you off