20 lines
608 B
C
20 lines
608 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
|
// SPDX-FileCopyrightText: Copyright (c) 2022 Jeff Epler for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "py/obj.h"
|
|
#include "mbedtls/ssl.h"
|
|
|
|
typedef struct {
|
|
mp_obj_base_t base;
|
|
bool check_name, use_global_ca_store;
|
|
const unsigned char *cacert_buf;
|
|
size_t cacert_bytes;
|
|
int (*crt_bundle_attach)(mbedtls_ssl_config *conf);
|
|
mp_buffer_info_t cert_buf, key_buf;
|
|
} ssl_sslcontext_obj_t;
|