HttpsJob.cpp 272 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2020-2022, the SerenityOS developers.
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibHTTP/HttpsJob.h>
  7. namespace HTTP {
  8. void HttpsJob::set_certificate(ByteString certificate, ByteString key)
  9. {
  10. (void)certificate;
  11. (void)key;
  12. }
  13. }