如何在较新版本的 openssl lib 中释放 x509_store
在使用旧版本的 openssl(1.02k) 时,我曾经使用以下 snipprt 清理 x509:-
X509_VERIFY_PARAM_free(om->cert_store->param); sk_X509_OBJECT_free(om->cert_store->objs); sk_X509_LOOKUP_free(om->cert_store->get_cert_methods); OPENSSL_free(om->cert_store);
在使用较新的 openssl 库(1.1.1f)时,我遇到了一个错误,其中 X509_STORE 类型不再可以通过 x509v3.h 头文件访问。无法找到合适的 API。请帮忙。
While using older versions of openssl(1.02k), I used to cleanup x509 using following snipprt:-
X509_VERIFY_PARAM_free(om->cert_store->param); sk_X509_OBJECT_free(om->cert_store->objs); sk_X509_LOOKUP_free(om->cert_store->get_cert_methods); OPENSSL_free(om->cert_store);
While using newer openssl library(1.1.1f) i encountered an error where X509_STORE type is no longer accessible via x509v3.h header file. Unable to find the right APIs. please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论