blob: 76e3da828fdce8fd45dd29b82a5e2a3e00af89de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 2020-2022, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibHTTP/HttpsJob.h>
namespace HTTP {
void HttpsJob::set_certificate(DeprecatedString certificate, DeprecatedString key)
{
m_received_client_certificates = TLS::TLSv12::parse_pem_certificate(certificate.bytes(), key.bytes());
}
}
|