Capicom 3des:2 键还是 3 键?
大量搜索和阅读并没有告诉我 capicom.encrypteddata 类模块(它是 VB6,但这在回答这个问题时并不重要)是否使用 2-key 3DES 还是 3-key 3DES。 (.Algorithm.Name = CAPICOM_ENCRYPTION_ALGORITHM_3DES
) 有人知道它使用的是哪一种吗? 此信息的来源也会有所帮助。 我怀疑,因为我认为不支持足够高的密钥长度,所以它是 2DES。 但我还没有找到可以接受的确认。
Much searching and reading has not told me whether the capicom.encrypteddata
class module (it's VB6, but that shouldn't matter in answering this question) is using 2-key 3DES or 3-key 3DES. (.Algorithm.Name = CAPICOM_ENCRYPTION_ALGORITHM_3DES
) Anyone know which one it is using? A source of this information would also be helpful. I suspect, since I don't think high enough key lengths are supported, that it is 2DES. But I haven't found acceptable confirmation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CAPICOM 是 CryptoAPI 之上的一个薄包装器。 如果您对 EncryptedData.Encrypt() 的输出进行解码,您将看到类似这样的内容(它是以专有格式编码的 ASN.1):
注意 26115。这是 CALG_3DES 的值,它是 3DES 的 CryptoAPI 标识符,其中包含三个密钥(具有两个密钥的 3DES 称为 CALG_3DES_112)。 192是密钥长度,也匹配三密钥3DES:
CAPICOM is a thin wrapper on top of CryptoAPI. If you decode the output from EncryptedData.Encrypt() you will see something like this (it is ASN.1 encoded in a proprietary format):
Note the 26115. That is the value for CALG_3DES, which is the CryptoAPI identifier for 3DES with three keys (3DES with two keys is called CALG_3DES_112). The 192 is the key-length, also match three-key 3DES: