1 /* 2 * Copyright (c) 2024 Raspberry Pi (Trading) Ltd. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef PICO_MBEDTLS_SHA256_ALT_H 8 #define PICO_MBEDTLS_SHA256_ALT_H 9 10 #if LIB_PICO_SHA256 11 #include "pico/sha256.h" 12 13 typedef struct pico_sha256_state mbedtls_sha256_context; 14 #endif // PICO_RP2350 15 16 #endif 17