blob: 67e7c5c822cbc8c27d436832ccd748c6d5dede88 [file] [log] [blame]
Gilles Peskine7a894f22019-11-26 16:06:46 +01001/**
2 * \file psa/crypto_compat.h
3 *
4 * \brief PSA cryptography module: Backward compatibility aliases
5 *
Gilles Peskine0168f2f2019-11-29 12:22:32 +01006 * This header declares alternative names for macro and functions.
7 * New application code should not use these names.
8 * These names may be removed in a future version of Mbed Crypto.
9 *
Gilles Peskine7a894f22019-11-26 16:06:46 +010010 * \note This file may not be included directly. Applications must
11 * include psa/crypto.h.
12 */
13/*
Bence Szépkúti1e148272020-08-07 13:07:28 +020014 * Copyright The Mbed TLS Contributors
Gilles Peskine7a894f22019-11-26 16:06:46 +010015 * SPDX-License-Identifier: Apache-2.0
16 *
17 * Licensed under the Apache License, Version 2.0 (the "License"); you may
18 * not use this file except in compliance with the License.
19 * You may obtain a copy of the License at
20 *
21 * http://www.apache.org/licenses/LICENSE-2.0
22 *
23 * Unless required by applicable law or agreed to in writing, software
24 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
25 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26 * See the License for the specific language governing permissions and
27 * limitations under the License.
Gilles Peskine7a894f22019-11-26 16:06:46 +010028 */
29
30#ifndef PSA_CRYPTO_COMPAT_H
31#define PSA_CRYPTO_COMPAT_H
32
Gilles Peskine7a894f22019-11-26 16:06:46 +010033#ifdef __cplusplus
34extern "C" {
35#endif
36
Ronald Croncf56a0a2020-08-04 09:51:30 +020037/*
Ronald Cron1d12d872020-11-18 17:21:22 +010038 * To support both openless APIs and psa_open_key() temporarily, define
Ronald Croncf56a0a2020-08-04 09:51:30 +020039 * psa_key_handle_t to be equal to mbedtls_svc_key_id_t. Do not mark the
40 * type and its utility macros and functions deprecated yet. This will be done
41 * in a subsequent phase.
42 */
43typedef mbedtls_svc_key_id_t psa_key_handle_t;
44
45#define PSA_KEY_HANDLE_INIT MBEDTLS_SVC_KEY_ID_INIT
46
Ronald Croncf56a0a2020-08-04 09:51:30 +020047/** Check wether an handle is null.
48 *
49 * \param handle Handle
50 *
51 * \return Non-zero if the handle is null, zero otherwise.
52 */
53static inline int psa_key_handle_is_null( psa_key_handle_t handle )
54{
55 return( mbedtls_svc_key_id_is_null( handle ) );
56}
57
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010058#if !defined(MBEDTLS_DEPRECATED_REMOVED)
59
Gilles Peskine0168f2f2019-11-29 12:22:32 +010060/*
61 * Mechanism for declaring deprecated values
62 */
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010063#if defined(MBEDTLS_DEPRECATED_WARNING) && !defined(MBEDTLS_PSA_DEPRECATED)
64#define MBEDTLS_PSA_DEPRECATED __attribute__((deprecated))
65#else
66#define MBEDTLS_PSA_DEPRECATED
67#endif
68
Gilles Peskine41510942019-11-26 16:10:58 +010069typedef MBEDTLS_PSA_DEPRECATED size_t mbedtls_deprecated_size_t;
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010070typedef MBEDTLS_PSA_DEPRECATED psa_status_t mbedtls_deprecated_psa_status_t;
Gilles Peskine41510942019-11-26 16:10:58 +010071typedef MBEDTLS_PSA_DEPRECATED psa_key_usage_t mbedtls_deprecated_psa_key_usage_t;
Paul Elliott8ff510a2020-06-02 17:19:28 +010072typedef MBEDTLS_PSA_DEPRECATED psa_ecc_family_t mbedtls_deprecated_psa_ecc_family_t;
Paul Elliott75e27032020-06-03 15:17:39 +010073typedef MBEDTLS_PSA_DEPRECATED psa_dh_family_t mbedtls_deprecated_psa_dh_family_t;
Paul Elliott8ff510a2020-06-02 17:19:28 +010074typedef MBEDTLS_PSA_DEPRECATED psa_ecc_family_t psa_ecc_curve_t;
Paul Elliott75e27032020-06-03 15:17:39 +010075typedef MBEDTLS_PSA_DEPRECATED psa_dh_family_t psa_dh_group_t;
Bence Szépkúticbe39532020-12-08 00:01:31 +010076typedef MBEDTLS_PSA_DEPRECATED psa_algorithm_t mbedtls_deprecated_psa_algorithm_t;
Paul Elliott8ff510a2020-06-02 17:19:28 +010077
78#define PSA_KEY_TYPE_GET_CURVE PSA_KEY_TYPE_ECC_GET_FAMILY
Paul Elliott75e27032020-06-03 15:17:39 +010079#define PSA_KEY_TYPE_GET_GROUP PSA_KEY_TYPE_DH_GET_FAMILY
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010080
81#define MBEDTLS_DEPRECATED_CONSTANT( type, value ) \
82 ( (mbedtls_deprecated_##type) ( value ) )
83
Gilles Peskine7a894f22019-11-26 16:06:46 +010084/*
Gilles Peskine0168f2f2019-11-29 12:22:32 +010085 * Deprecated PSA Crypto error code definitions (PSA Crypto API <= 1.0 beta2)
Gilles Peskine7a894f22019-11-26 16:06:46 +010086 */
Gilles Peskine7a894f22019-11-26 16:06:46 +010087#define PSA_ERROR_UNKNOWN_ERROR \
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010088 MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_GENERIC_ERROR )
Gilles Peskine7a894f22019-11-26 16:06:46 +010089#define PSA_ERROR_OCCUPIED_SLOT \
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010090 MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_ALREADY_EXISTS )
Gilles Peskine7a894f22019-11-26 16:06:46 +010091#define PSA_ERROR_EMPTY_SLOT \
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010092 MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_DOES_NOT_EXIST )
Gilles Peskine7a894f22019-11-26 16:06:46 +010093#define PSA_ERROR_INSUFFICIENT_CAPACITY \
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010094 MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_INSUFFICIENT_DATA )
Gilles Peskine7a894f22019-11-26 16:06:46 +010095#define PSA_ERROR_TAMPERING_DETECTED \
Gilles Peskine7b0ab6d2019-11-26 16:32:12 +010096 MBEDTLS_DEPRECATED_CONSTANT( psa_status_t, PSA_ERROR_CORRUPTION_DETECTED )
97
Gilles Peskine41510942019-11-26 16:10:58 +010098/*
Gilles Peskine0168f2f2019-11-29 12:22:32 +010099 * Deprecated PSA Crypto numerical encodings (PSA Crypto API <= 1.0 beta3)
Gilles Peskine41510942019-11-26 16:10:58 +0100100 */
101#define PSA_KEY_USAGE_SIGN \
102 MBEDTLS_DEPRECATED_CONSTANT( psa_key_usage_t, PSA_KEY_USAGE_SIGN_HASH )
103#define PSA_KEY_USAGE_VERIFY \
104 MBEDTLS_DEPRECATED_CONSTANT( psa_key_usage_t, PSA_KEY_USAGE_VERIFY_HASH )
105
106/*
Gilles Peskine0168f2f2019-11-29 12:22:32 +0100107 * Deprecated PSA Crypto size calculation macros (PSA Crypto API <= 1.0 beta3)
Gilles Peskine41510942019-11-26 16:10:58 +0100108 */
109#define PSA_ASYMMETRIC_SIGNATURE_MAX_SIZE \
110 MBEDTLS_DEPRECATED_CONSTANT( size_t, PSA_SIGNATURE_MAX_SIZE )
111#define PSA_ASYMMETRIC_SIGN_OUTPUT_SIZE( key_type, key_bits, alg ) \
112 MBEDTLS_DEPRECATED_CONSTANT( size_t, PSA_SIGN_OUTPUT_SIZE( key_type, key_bits, alg ) )
gabor-mezei-armcbcec212020-12-18 14:23:51 +0100113#define PSA_KEY_EXPORT_MAX_SIZE( key_type, key_bits ) \
114 PSA_EXPORT_KEY_OUTPUT_SIZE( key_type, key_bits )
115#define PSA_BLOCK_CIPHER_BLOCK_SIZE( type ) \
116 PSA_BLOCK_CIPHER_BLOCK_LENGTH( type )
117#define PSA_MAX_BLOCK_CIPHER_BLOCK_SIZE \
118 PSA_BLOCK_CIPHER_BLOCK_MAX_SIZE
119#define PSA_HASH_SIZE( alg ) \
120 PSA_HASH_LENGTH( alg )
121#define PSA_MAC_FINAL_SIZE( key_type, key_bits, alg ) \
122 PSA_MAC_LENGTH( key_type, key_bits, alg )
123#define PSA_ALG_TLS12_PSK_TO_MS_MAX_PSK_LEN \
124 PSA_TLS12_PSK_TO_MS_PSK_MAX_SIZE
Gilles Peskine41510942019-11-26 16:10:58 +0100125/*
Gilles Peskine0168f2f2019-11-29 12:22:32 +0100126 * Deprecated PSA Crypto function names (PSA Crypto API <= 1.0 beta3)
Gilles Peskine41510942019-11-26 16:10:58 +0100127 */
Soby Mathew0a4270d2020-02-10 15:20:39 +0000128MBEDTLS_PSA_DEPRECATED static inline psa_status_t psa_asymmetric_sign( psa_key_handle_t key,
129 psa_algorithm_t alg,
130 const uint8_t *hash,
131 size_t hash_length,
132 uint8_t *signature,
133 size_t signature_size,
134 size_t *signature_length )
135{
136 return psa_sign_hash( key, alg, hash, hash_length, signature, signature_size, signature_length );
137}
138
139MBEDTLS_PSA_DEPRECATED static inline psa_status_t psa_asymmetric_verify( psa_key_handle_t key,
140 psa_algorithm_t alg,
141 const uint8_t *hash,
142 size_t hash_length,
143 const uint8_t *signature,
144 size_t signature_length )
145{
146 return psa_verify_hash( key, alg, hash, hash_length, signature, signature_length );
147}
148
Gilles Peskine45c29ce2019-12-03 17:56:11 +0100149/*
Paul Elliott75e27032020-06-03 15:17:39 +0100150 * Size-specific elliptic curve families.
Gilles Peskine45c29ce2019-12-03 17:56:11 +0100151 */
Gilles Peskineb87b7192019-12-04 16:24:10 +0100152#define PSA_ECC_CURVE_SECP160K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100153 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100154#define PSA_ECC_CURVE_SECP192K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100155 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100156#define PSA_ECC_CURVE_SECP224K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100157 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100158#define PSA_ECC_CURVE_SECP256K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100159 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100160#define PSA_ECC_CURVE_SECP160R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100161 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100162#define PSA_ECC_CURVE_SECP192R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100163 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100164#define PSA_ECC_CURVE_SECP224R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100165 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100166#define PSA_ECC_CURVE_SECP256R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100167 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100168#define PSA_ECC_CURVE_SECP384R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100169 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100170#define PSA_ECC_CURVE_SECP521R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100171 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100172#define PSA_ECC_CURVE_SECP160R2 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100173 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R2 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100174#define PSA_ECC_CURVE_SECT163K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100175 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100176#define PSA_ECC_CURVE_SECT233K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100177 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100178#define PSA_ECC_CURVE_SECT239K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100179 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100180#define PSA_ECC_CURVE_SECT283K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100181 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100182#define PSA_ECC_CURVE_SECT409K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100183 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100184#define PSA_ECC_CURVE_SECT571K1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100185 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100186#define PSA_ECC_CURVE_SECT163R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100187 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100188#define PSA_ECC_CURVE_SECT193R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100189 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100190#define PSA_ECC_CURVE_SECT233R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100191 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100192#define PSA_ECC_CURVE_SECT283R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100193 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100194#define PSA_ECC_CURVE_SECT409R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100195 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100196#define PSA_ECC_CURVE_SECT571R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100197 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100198#define PSA_ECC_CURVE_SECT163R2 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100199 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R2 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100200#define PSA_ECC_CURVE_SECT193R2 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100201 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R2 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100202#define PSA_ECC_CURVE_BRAINPOOL_P256R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100203 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100204#define PSA_ECC_CURVE_BRAINPOOL_P384R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100205 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100206#define PSA_ECC_CURVE_BRAINPOOL_P512R1 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100207 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100208#define PSA_ECC_CURVE_CURVE25519 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100209 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_MONTGOMERY )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100210#define PSA_ECC_CURVE_CURVE448 \
Paul Elliott8ff510a2020-06-02 17:19:28 +0100211 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_MONTGOMERY )
212
213/*
214 * Curves that changed name due to PSA specification.
215 */
216#define PSA_ECC_CURVE_SECP_K1 \
217 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_K1 )
218#define PSA_ECC_CURVE_SECP_R1 \
219 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R1 )
220#define PSA_ECC_CURVE_SECP_R2 \
221 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECP_R2 )
222#define PSA_ECC_CURVE_SECT_K1 \
223 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_K1 )
224#define PSA_ECC_CURVE_SECT_R1 \
225 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R1 )
226#define PSA_ECC_CURVE_SECT_R2 \
227 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_SECT_R2 )
228#define PSA_ECC_CURVE_BRAINPOOL_P_R1 \
229 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_BRAINPOOL_P_R1 )
230#define PSA_ECC_CURVE_MONTGOMERY \
231 MBEDTLS_DEPRECATED_CONSTANT( psa_ecc_family_t, PSA_ECC_FAMILY_MONTGOMERY )
Gilles Peskine45c29ce2019-12-03 17:56:11 +0100232
Paul Elliott75e27032020-06-03 15:17:39 +0100233/*
234 * Finite-field Diffie-Hellman families.
235 */
Gilles Peskineb87b7192019-12-04 16:24:10 +0100236#define PSA_DH_GROUP_FFDHE2048 \
Paul Elliott75e27032020-06-03 15:17:39 +0100237 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100238#define PSA_DH_GROUP_FFDHE3072 \
Paul Elliott75e27032020-06-03 15:17:39 +0100239 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100240#define PSA_DH_GROUP_FFDHE4096 \
Paul Elliott75e27032020-06-03 15:17:39 +0100241 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100242#define PSA_DH_GROUP_FFDHE6144 \
Paul Elliott75e27032020-06-03 15:17:39 +0100243 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 )
Gilles Peskineb87b7192019-12-04 16:24:10 +0100244#define PSA_DH_GROUP_FFDHE8192 \
Paul Elliott75e27032020-06-03 15:17:39 +0100245 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 )
246
247/*
248 * Diffie-Hellman families that changed name due to PSA specification.
249 */
250#define PSA_DH_GROUP_RFC7919 \
251 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_RFC7919 )
252#define PSA_DH_GROUP_CUSTOM \
253 MBEDTLS_DEPRECATED_CONSTANT( psa_dh_family_t, PSA_DH_FAMILY_CUSTOM )
Gilles Peskine45c29ce2019-12-03 17:56:11 +0100254
Bence Szépkúti1de907d2020-12-07 18:20:28 +0100255/*
256 * Deprecated PSA Crypto stream cipher algorithms (PSA Crypto API <= 1.0 beta3)
257 */
258#define PSA_ALG_ARC4 \
Bence Szépkúticbe39532020-12-08 00:01:31 +0100259 MBEDTLS_DEPRECATED_CONSTANT( psa_algorithm_t, PSA_ALG_STREAM_CIPHER )
Bence Szépkúti1de907d2020-12-07 18:20:28 +0100260#define PSA_ALG_CHACHA20 \
Bence Szépkúticbe39532020-12-08 00:01:31 +0100261 MBEDTLS_DEPRECATED_CONSTANT( psa_algorithm_t, PSA_ALG_STREAM_CIPHER )
262
263#endif /* MBEDTLS_DEPRECATED_REMOVED */
Bence Szépkúti1de907d2020-12-07 18:20:28 +0100264
Ronald Croncf56a0a2020-08-04 09:51:30 +0200265/** Open a handle to an existing persistent key.
266 *
267 * Open a handle to a persistent key. A key is persistent if it was created
268 * with a lifetime other than #PSA_KEY_LIFETIME_VOLATILE. A persistent key
269 * always has a nonzero key identifier, set with psa_set_key_id() when
270 * creating the key. Implementations may provide additional pre-provisioned
271 * keys that can be opened with psa_open_key(). Such keys have an application
272 * key identifier in the vendor range, as documented in the description of
273 * #psa_key_id_t.
274 *
275 * The application must eventually close the handle with psa_close_key() or
276 * psa_destroy_key() to release associated resources. If the application dies
277 * without calling one of these functions, the implementation should perform
278 * the equivalent of a call to psa_close_key().
279 *
280 * Some implementations permit an application to open the same key multiple
281 * times. If this is successful, each call to psa_open_key() will return a
282 * different key handle.
283 *
284 * \note This API is not part of the PSA Cryptography API Release 1.0.0
285 * specification. It was defined in the 1.0 Beta 3 version of the
286 * specification but was removed in the 1.0.0 released version. This API is
287 * kept for the time being to not break applications relying on it. It is not
288 * deprecated yet but will be in the near future.
289 *
290 * \note Applications that rely on opening a key multiple times will not be
291 * portable to implementations that only permit a single key handle to be
292 * opened. See also :ref:\`key-handles\`.
293 *
294 *
295 * \param key The persistent identifier of the key.
296 * \param[out] handle On success, a handle to the key.
297 *
298 * \retval #PSA_SUCCESS
299 * Success. The application can now use the value of `*handle`
300 * to access the key.
301 * \retval #PSA_ERROR_INSUFFICIENT_MEMORY
302 * The implementation does not have sufficient resources to open the
303 * key. This can be due to reaching an implementation limit on the
304 * number of open keys, the number of open key handles, or available
305 * memory.
306 * \retval #PSA_ERROR_DOES_NOT_EXIST
307 * There is no persistent key with key identifier \p id.
308 * \retval #PSA_ERROR_INVALID_ARGUMENT
309 * \p id is not a valid persistent key identifier.
310 * \retval #PSA_ERROR_NOT_PERMITTED
311 * The specified key exists, but the application does not have the
312 * permission to access it. Note that this specification does not
313 * define any way to create such a key, but it may be possible
314 * through implementation-specific means.
315 * \retval #PSA_ERROR_COMMUNICATION_FAILURE
316 * \retval #PSA_ERROR_CORRUPTION_DETECTED
317 * \retval #PSA_ERROR_STORAGE_FAILURE
318 * \retval #PSA_ERROR_BAD_STATE
319 * The library has not been previously initialized by psa_crypto_init().
320 * It is implementation-dependent whether a failure to initialize
321 * results in this error code.
322 */
323psa_status_t psa_open_key( mbedtls_svc_key_id_t key,
324 psa_key_handle_t *handle );
325
326/** Close a key handle.
327 *
328 * If the handle designates a volatile key, this will destroy the key material
329 * and free all associated resources, just like psa_destroy_key().
330 *
331 * If this is the last open handle to a persistent key, then closing the handle
332 * will free all resources associated with the key in volatile memory. The key
333 * data in persistent storage is not affected and can be opened again later
334 * with a call to psa_open_key().
335 *
336 * Closing the key handle makes the handle invalid, and the key handle
337 * must not be used again by the application.
338 *
339 * \note This API is not part of the PSA Cryptography API Release 1.0.0
340 * specification. It was defined in the 1.0 Beta 3 version of the
341 * specification but was removed in the 1.0.0 released version. This API is
342 * kept for the time being to not break applications relying on it. It is not
343 * deprecated yet but will be in the near future.
344 *
345 * \note If the key handle was used to set up an active
346 * :ref:\`multipart operation <multipart-operations>\`, then closing the
347 * key handle can cause the multipart operation to fail. Applications should
348 * maintain the key handle until after the multipart operation has finished.
349 *
350 * \param handle The key handle to close.
351 * If this is \c 0, do nothing and return \c PSA_SUCCESS.
352 *
353 * \retval #PSA_SUCCESS
354 * \p handle was a valid handle or \c 0. It is now closed.
355 * \retval #PSA_ERROR_INVALID_HANDLE
356 * \p handle is not a valid handle nor \c 0.
357 * \retval #PSA_ERROR_COMMUNICATION_FAILURE
358 * \retval #PSA_ERROR_CORRUPTION_DETECTED
359 * \retval #PSA_ERROR_BAD_STATE
360 * The library has not been previously initialized by psa_crypto_init().
361 * It is implementation-dependent whether a failure to initialize
362 * results in this error code.
363 */
364psa_status_t psa_close_key(psa_key_handle_t handle);
365
Gilles Peskine7a894f22019-11-26 16:06:46 +0100366#ifdef __cplusplus
367}
368#endif
369
370#endif /* PSA_CRYPTO_COMPAT_H */