使用 Objective-c 将 C 指针的内容存储到文件中
我有一个 CMS_ContentInfo 指针...
CMS_ContentInfo *encryptedDataWithCMS = CMS_encrypt(certList, dataToEncrypt, cipher, NULL);
...我想将 CMS_ContentInfo 存储到一个新的 .p7m 文件中。 有谁知道如何做到这一点?
编辑:此外,我需要将其保存在 Objective-C (NSObject 的任何实例)中。
谢谢, 克里斯
I have a CMS_ContentInfo pointer...
CMS_ContentInfo *encryptedDataWithCMS = CMS_encrypt(certList, dataToEncrypt, cipher, NULL);
... and I would like to store the CMS_ContentInfo into a new .p7m file.
Does anyone have an idea how to do this?
EDIT: Furthermore I need to save it in objective-c (any instance of NSObject).
Thanks,
Chris
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定这是否是您所要求的,但要编写结构的内容:
Not sure if this is what you are asking, but to write the contents of a structure: