C# 中的 CryptExportKey
与此 CryptExportKey 调用等效的 C# 是什么?
CryptExportKey(hKey, hPublicKey, SIMPLEBLOB, 0, lpData, &nSize);
的 C# 代码进行描述,那就太好了
如果您能对使用 hKey、hPublicKey 和 SIMPLEBLOB(或它们在 C# 中的等效项)
What is the C# equivalent to this CryptExportKey call?
CryptExportKey(hKey, hPublicKey, SIMPLEBLOB, 0, lpData, &nSize);
and it would be nice if you can give a description on your C# code where
hKey, hPublicKey and SIMPLEBLOB (or their equivalent in C#) are being used
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我用的就是这个?
This is what I use?
我认为你最好的选择是手动处理它。
SIMPLEBLOB 格式是
BLOBHEADER 所在的位置
,因此应该使用类似的格式(抱歉,未测试):
I think your best bet is handling it manually.
The SIMPLEBLOB format is
where BLOBHEADER is
so something like this should do it (sorry, not tested):