RSACryptoServiceProvider.ExportCspBlob 数据格式
我们正在导出公钥和私钥。私钥将由用 Magic 编写的非 .net 软件使用。开发人员对导出密钥的格式有疑问。是否有白皮书或其他资源解释导出数据的格式?
We are exporting a public and private key. The private key is to be consumed by non .net software written in Magic. The developers have questions around the format of the exported key. Is there a whitepaper or other resource that explains the format of the exported data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
几年前我看的时候并没有太多文档。您可以在 MSDN 上找到一些内容,但最有用的是 CryptoAPI 的 C 头文件。
但是,如果您将代码视为文档,那么我建议您阅读(免责声明:我的)Mono 源代码 必须与这些结构进行互操作。
您可能还想使用 XML 格式,例如
ToXmlString(true);
,这可能比字节缓冲区更容易解析/使用。There was not much documentation when I looked years ago. You'll find some on MSDN but the most helpful are the C header files for CryptoAPI.
But if you consider code as documentation then I suggest you to read (disclaimer: mine) the Mono source code which has to interop with those structures.
You might also want to use the XML format, e.g.
ToXmlString(true);
, which might prove easier to parse/use than the byte buffers.关于导出的 blob 类型的非常有用的文档:
基础提供商密钥 BLOB
Very useful documentation on the exported blob types:
Base Provider Key BLOBs