blob: 62fd382d3ede5bb8fef0bccaa0df6d5284d7cd72 [file] [log] [blame]
/*
* Copyright (c) 2023, Christian Huitema
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/
#ifndef picotls_mbedtls_h
#define picotls_mbedtls_h
#ifdef __cplusplus
extern "C" {
#endif
#include <psa/crypto.h>
#include "picotls.h"
/* before using any of these objects, psa_crypto_init() must be called */
extern ptls_hash_algorithm_t ptls_mbedtls_sha256;
extern ptls_hash_algorithm_t ptls_mbedtls_sha512;
#if defined(MBEDTLS_SHA384_C)
extern ptls_hash_algorithm_t ptls_mbedtls_sha384;
#endif
extern ptls_cipher_algorithm_t ptls_mbedtls_aes128ecb;
extern ptls_cipher_algorithm_t ptls_mbedtls_aes256ecb;
extern ptls_cipher_algorithm_t ptls_mbedtls_aes128ctr;
extern ptls_cipher_algorithm_t ptls_mbedtls_aes256ctr;
extern ptls_cipher_algorithm_t ptls_mbedtls_chacha20;
extern ptls_aead_algorithm_t ptls_mbedtls_aes128gcm;
extern ptls_aead_algorithm_t ptls_mbedtls_aes256gcm;
extern ptls_aead_algorithm_t ptls_mbedtls_chacha20poly1305;
extern ptls_cipher_suite_t ptls_mbedtls_aes128gcmsha256;
#if defined(MBEDTLS_SHA384_C)
extern ptls_cipher_suite_t ptls_mbedtls_aes256gcmsha384;
#endif
extern ptls_cipher_suite_t ptls_mbedtls_chacha20poly1305sha256;
extern ptls_cipher_suite_t *ptls_mbedtls_cipher_suites[];
extern ptls_key_exchange_algorithm_t ptls_mbedtls_secp256r1;
extern ptls_key_exchange_algorithm_t ptls_mbedtls_x25519;
extern ptls_key_exchange_algorithm_t *ptls_mbedtls_key_exchanges[];
void ptls_mbedtls_random_bytes(void *buf, size_t len);
int ptls_mbedtls_load_private_key(ptls_context_t *ctx, char const *pem_fname);
void ptls_mbedtls_dispose_sign_certificate(ptls_sign_certificate_t *_self);
#ifdef __cplusplus
}
#endif
#endif /* picotls_mbedtls_h */