blob: 408c39bfecd0463aae4b6e3874608cc165b9921b [file] [log] [blame]
Gilles Peskine5e769522018-11-20 21:59:56 +01001/**
2 * \file psa_crypto_invasive.h
3 *
4 * \brief PSA cryptography module: invasive interfaces for test only.
5 *
6 * The interfaces in this file are intended for testing purposes only.
7 * They MUST NOT be made available to clients over IPC in integrations
8 * with isolation, and they SHOULD NOT be made available in library
9 * integrations except when building the library for testing.
10 */
11/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020012 * Copyright The Mbed TLS Contributors
Gilles Peskine5e769522018-11-20 21:59:56 +010013 * SPDX-License-Identifier: Apache-2.0
14 *
15 * Licensed under the Apache License, Version 2.0 (the "License"); you may
16 * not use this file except in compliance with the License.
17 * You may obtain a copy of the License at
18 *
19 * http://www.apache.org/licenses/LICENSE-2.0
20 *
21 * Unless required by applicable law or agreed to in writing, software
22 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
23 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
24 * See the License for the specific language governing permissions and
25 * limitations under the License.
Gilles Peskine5e769522018-11-20 21:59:56 +010026 */
27
28#ifndef PSA_CRYPTO_INVASIVE_H
29#define PSA_CRYPTO_INVASIVE_H
30
Ronald Cron7871cb12023-10-10 08:51:39 +020031/*
32 * Include the build-time configuration information header. Here, we do not
33 * include `"mbedtls/build_info.h"` directly but `"psa/build_info.h"`, which
34 * is basically just an alias to it. This is to ease the maintenance of the
35 * TF-PSA-Crypto repository which has a different build system and
36 * configuration.
37 */
38#include "psa/build_info.h"
Gilles Peskine5e769522018-11-20 21:59:56 +010039
40#include "psa/crypto.h"
Steven Cooreman58c94d32021-03-02 21:31:17 +010041#include "common.h"
Gilles Peskine5e769522018-11-20 21:59:56 +010042
43#include "mbedtls/entropy.h"
44
Gilles Peskine4fc21fd2020-11-13 18:47:18 +010045#if !defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
Gilles Peskine5e769522018-11-20 21:59:56 +010046/** \brief Configure entropy sources.
47 *
48 * This function may only be called before a call to psa_crypto_init(),
49 * or after a call to mbedtls_psa_crypto_free() and before any
50 * subsequent call to psa_crypto_init().
51 *
52 * This function is only intended for test purposes. The functionality
53 * it provides is also useful for system integrators, but
54 * system integrators should configure entropy drivers instead of
55 * breaking through to the Mbed TLS API.
56 *
57 * \param entropy_init Function to initialize the entropy context
58 * and set up the desired entropy sources.
59 * It is called by psa_crypto_init().
60 * By default this is mbedtls_entropy_init().
61 * This function cannot report failures directly.
62 * To indicate a failure, set the entropy context
63 * to a state where mbedtls_entropy_func() will
64 * return an error.
65 * \param entropy_free Function to free the entropy context
66 * and associated resources.
67 * It is called by mbedtls_psa_crypto_free().
68 * By default this is mbedtls_entropy_free().
69 *
Ronald Cron96783552020-10-19 12:06:30 +020070 * \retval #PSA_SUCCESS
Gilles Peskine5e769522018-11-20 21:59:56 +010071 * Success.
Ronald Cron96783552020-10-19 12:06:30 +020072 * \retval #PSA_ERROR_NOT_PERMITTED
Gilles Peskine5e769522018-11-20 21:59:56 +010073 * The caller does not have the permission to configure
74 * entropy sources.
Ronald Cron96783552020-10-19 12:06:30 +020075 * \retval #PSA_ERROR_BAD_STATE
Gilles Peskine5e769522018-11-20 21:59:56 +010076 * The library has already been initialized.
77 */
78psa_status_t mbedtls_psa_crypto_configure_entropy_sources(
Gilles Peskine449bd832023-01-11 14:50:10 +010079 void (* entropy_init)(mbedtls_entropy_context *ctx),
80 void (* entropy_free)(mbedtls_entropy_context *ctx));
Gilles Peskine4fc21fd2020-11-13 18:47:18 +010081#endif /* !defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) */
Gilles Peskine5e769522018-11-20 21:59:56 +010082
Steven Cooreman58c94d32021-03-02 21:31:17 +010083#if defined(MBEDTLS_TEST_HOOKS) && defined(MBEDTLS_PSA_CRYPTO_C)
Steven Cooremanf9f7fdf2021-03-03 19:04:05 +010084psa_status_t psa_mac_key_can_do(
85 psa_algorithm_t algorithm,
Gilles Peskine449bd832023-01-11 14:50:10 +010086 psa_key_type_t key_type);
Steven Cooreman58c94d32021-03-02 21:31:17 +010087#endif /* MBEDTLS_TEST_HOOKS && MBEDTLS_PSA_CRYPTO_C */
88
Gilles Peskine5e769522018-11-20 21:59:56 +010089#endif /* PSA_CRYPTO_INVASIVE_H */