mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
This commit replaces all TLS connection code with wolfssl. The certificate parsing code has to remain for now, as wolfssl does not seem to have any exposed API for that.
18 lines
272 B
C++
18 lines
272 B
C++
/*
|
|
* Copyright (c) 2020-2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibHTTP/HttpsJob.h>
|
|
|
|
namespace HTTP {
|
|
|
|
void HttpsJob::set_certificate(ByteString certificate, ByteString key)
|
|
{
|
|
(void)certificate;
|
|
(void)key;
|
|
}
|
|
|
|
}
|