其他分享
首页 > 其他分享> > c – unique_ptr和OpenSSL的STACK_OF(X509)*

c – unique_ptr和OpenSSL的STACK_OF(X509)*

作者:互联网

我使用一些using语句和unique_ptr来使用OpenSSL,如suggested in another question.没有,代码变得非常难看,我不是很喜欢goto语句.

到目前为止,我已尽可能地更改了我的代码.以下是我使用的示例:

using BIO_ptr = std::unique_ptr<BIO, decltype(&::BIO_free)>;
using X509_ptr = std::unique_ptr<X509, decltype(&::X509_free)>;
using EVP_PKEY_ptr = std::unique_ptr<EVP_PKEY, decltype(&::EVP_PKEY_free)>;
using PKCS7_ptr = std::unique_ptr<PKCS7, decltype(&::PKCS7_free)>;
...

BIO_ptr tbio(BIO_new_file(some_filename, "r"), ::BIO_free);

现在我需要一个STACK_OF(X509),我不知道,如果使用unique_ptr也可以.我正在寻找类似于下面的东西,但这不起作用.

using STACK_OF_X509_ptr = std::unique_ptr<STACK_OF(X509), decltype(&::sk_X509_free)>;

我也试过了Functor:

struct StackX509Deleter {
    void operator()(STACK_OF(X509) *ptr) {
        sk_X509_free(ptr);
    }
};

using STACK_OF_X509_ptr = std::unique_ptr<STACK_OF(X509), StackX509Deleter>;

STACK_OF_X509_ptr chain(loadIntermediate(cert.string()));

编译器接受此操作并运行应用程序.只有一个问题:在上面显示的其他unique_ptrs中,我总是指定了第二个参数,所以我打赌我错过了一些东西:

STACK_OF_X509_ptr chain(loadIntermediate(cert.string()),  ??????);

如何使用C unique_ptr和OpenSSL的STACK_OF(X509)*?

解决方法:

我定义了一个常规函数:

void stackOfX509Deleter(STACK_OF(X509) *ptr) {
    sk_X509_free(ptr);
}

然后我在我的代码中使用它:

using STACK_OF_X509_ptr = std::unique_ptr<STACK_OF(X509),
    decltype(&stackOfX509Deleter)>;

STACK_OF_X509_ptr chain(loadIntermediate(cert.string()),
                    stackOfX509Deleter);

标签:c,c11,smart-pointers,openssl,unique-ptr
来源: https://codeday.me/bug/20190925/1816380.html