1234567891011121314151617 |
- /*
- * Copyright (c) 2020-2022, the SerenityOS developers.
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Debug.h>
- #include <LibHTTP/HttpsJob.h>
- namespace HTTP {
- void HttpsJob::set_certificate(String certificate, String key)
- {
- m_received_client_certificates = TLS::TLSv12::parse_pem_certificate(certificate.bytes(), key.bytes());
- }
- }
|