1/* Copyright (C) 2019, ARM Limited, All Rights Reserved
2 * SPDX-License-Identifier: Apache-2.0
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may
5 * not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16/** @file
17@brief This file describes the PSA Internal Trusted Storage API
18*/
19
20#ifndef __PSA_INTERNAL_TRUSTED_STORAGE_H__
21#define __PSA_INTERNAL_TRUSTED_STORAGE_H__
22
23#include <stddef.h>
24#include <stdint.h>
25
26#include "psa/error.h"
27#include "psa/storage_common.h"
28#include "mbed_toolchain.h"
29
30#ifdef __cplusplus
31extern"C" {
32#endif
33#define PSA_ITS_API_VERSION_MAJOR 1 /**< The major version number of the PSA ITS API. It will be incremented on significant updates that may include breaking changes */
34#define PSA_ITS_API_VERSION_MINOR 1 /**< The minor version number of the PSA ITS API. It will be incremented in small updates that are unlikely to include breaking changes */
35
36// These deprecated types are still used by our PSA compliance test tools
37 MBED_DEPRECATED("ITS specific types should not be used")
This site uses cookies to store information on your computer.
By continuing to use our site, you consent to our cookies.
If you are not happy with the use of these cookies, please review our
Cookie Policy
to learn how they can be disabled.
By disabling cookies, some features of the site will not work.