Mbed OS Reference
Loading...
Searching...
No Matches
psa_util.h
Go to the documentation of this file.
1/**
2 * \file psa_util.h
3 *
4 * \brief Utility functions for the use of the PSA Crypto library.
5 *
6 * \warning This function is not part of the public API and may
7 * change at any time.
8 */
9/*
10 * Copyright The Mbed TLS Contributors
11 * SPDX-License-Identifier: Apache-2.0
12 *
13 * Licensed under the Apache License, Version 2.0 (the "License"); you may
14 * not use this file except in compliance with the License.
15 * You may obtain a copy of the License at
16 *
17 * http://www.apache.org/licenses/LICENSE-2.0
18 *
19 * Unless required by applicable law or agreed to in writing, software
20 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
21 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22 * See the License for the specific language governing permissions and
23 * limitations under the License.
24 */
25
26#ifndef MBEDTLS_PSA_UTIL_H
27#define MBEDTLS_PSA_UTIL_H
28
29#if !defined(MBEDTLS_CONFIG_FILE)
30#include "mbedtls/config.h"
31#else
32#include MBEDTLS_CONFIG_FILE
33#endif
34
35#if defined(MBEDTLS_USE_PSA_CRYPTO)
36
37#include "psa/crypto.h"
38
39#include "mbedtls/ecp.h"
40#include "mbedtls/md.h"
41#include "mbedtls/pk.h"
42#include "mbedtls/oid.h"
43
44#include <string.h>
45
46/* Translations for symmetric crypto. */
47
48static inline psa_key_type_t mbedtls_psa_translate_cipher_type(
50{
51 switch( cipher )
52 {
62 return( PSA_KEY_TYPE_AES );
63
64 /* ARIA not yet supported in PSA. */
65 /* case MBEDTLS_CIPHER_ARIA_128_CCM:
66 case MBEDTLS_CIPHER_ARIA_192_CCM:
67 case MBEDTLS_CIPHER_ARIA_256_CCM:
68 case MBEDTLS_CIPHER_ARIA_128_GCM:
69 case MBEDTLS_CIPHER_ARIA_192_GCM:
70 case MBEDTLS_CIPHER_ARIA_256_GCM:
71 case MBEDTLS_CIPHER_ARIA_128_CBC:
72 case MBEDTLS_CIPHER_ARIA_192_CBC:
73 case MBEDTLS_CIPHER_ARIA_256_CBC:
74 return( PSA_KEY_TYPE_ARIA ); */
75
76 default:
77 return( 0 );
78 }
79}
80
81static inline psa_algorithm_t mbedtls_psa_translate_cipher_mode(
82 mbedtls_cipher_mode_t mode, size_t taglen )
83{
84 switch( mode )
85 {
87 return( PSA_ALG_ECB_NO_PADDING );
89 return( PSA_ALG_AEAD_WITH_TAG_LENGTH( PSA_ALG_GCM, taglen ) );
91 return( PSA_ALG_AEAD_WITH_TAG_LENGTH( PSA_ALG_CCM, taglen ) );
93 if( taglen == 0 )
94 return( PSA_ALG_CBC_NO_PADDING );
95 /* Intentional fallthrough for taglen != 0 */
96 /* fallthrough */
97 default:
98 return( 0 );
99 }
100}
101
102static inline psa_key_usage_t mbedtls_psa_translate_cipher_operation(
104{
105 switch( op )
106 {
107 case MBEDTLS_ENCRYPT:
108 return( PSA_KEY_USAGE_ENCRYPT );
109 case MBEDTLS_DECRYPT:
110 return( PSA_KEY_USAGE_DECRYPT );
111 default:
112 return( 0 );
113 }
114}
115
116/* Translations for hashing. */
117
118static inline psa_algorithm_t mbedtls_psa_translate_md( mbedtls_md_type_t md_alg )
119{
120 switch( md_alg )
121 {
122#if defined(MBEDTLS_MD2_C)
123 case MBEDTLS_MD_MD2:
124 return( PSA_ALG_MD2 );
125#endif
126#if defined(MBEDTLS_MD4_C)
127 case MBEDTLS_MD_MD4:
128 return( PSA_ALG_MD4 );
129#endif
130#if defined(MBEDTLS_MD5_C)
131 case MBEDTLS_MD_MD5:
132 return( PSA_ALG_MD5 );
133#endif
134#if defined(MBEDTLS_SHA1_C)
135 case MBEDTLS_MD_SHA1:
136 return( PSA_ALG_SHA_1 );
137#endif
138#if defined(MBEDTLS_SHA256_C)
140 return( PSA_ALG_SHA_224 );
142 return( PSA_ALG_SHA_256 );
143#endif
144#if defined(MBEDTLS_SHA512_C)
146 return( PSA_ALG_SHA_384 );
148 return( PSA_ALG_SHA_512 );
149#endif
150#if defined(MBEDTLS_RIPEMD160_C)
152 return( PSA_ALG_RIPEMD160 );
153#endif
154 case MBEDTLS_MD_NONE: /* Intentional fallthrough */
155 default:
156 return( 0 );
157 }
158}
159
160/* Translations for ECC. */
161
162static inline int mbedtls_psa_get_ecc_oid_from_id(
163 psa_ecc_family_t curve, size_t bits,
164 char const **oid, size_t *oid_len )
165{
166 switch( curve )
167 {
169 switch( bits )
170 {
171#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
172 case 192:
173 *oid = MBEDTLS_OID_EC_GRP_SECP192R1;
174 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP192R1 );
175 return( 0 );
176#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */
177#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)
178 case 224:
179 *oid = MBEDTLS_OID_EC_GRP_SECP224R1;
180 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP224R1 );
181 return( 0 );
182#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */
183#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
184 case 256:
185 *oid = MBEDTLS_OID_EC_GRP_SECP256R1;
186 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP256R1 );
187 return( 0 );
188#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */
189#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
190 case 384:
191 *oid = MBEDTLS_OID_EC_GRP_SECP384R1;
192 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP384R1 );
193 return( 0 );
194#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */
195#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
196 case 521:
197 *oid = MBEDTLS_OID_EC_GRP_SECP521R1;
198 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP521R1 );
199 return( 0 );
200#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */
201 }
202 break;
204 switch( bits )
205 {
206#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)
207 case 192:
208 *oid = MBEDTLS_OID_EC_GRP_SECP192K1;
209 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP192K1 );
210 return( 0 );
211#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */
212#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
213 case 224:
214 *oid = MBEDTLS_OID_EC_GRP_SECP224K1;
215 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP224K1 );
216 return( 0 );
217#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */
218#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
219 case 256:
220 *oid = MBEDTLS_OID_EC_GRP_SECP256K1;
221 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_SECP256K1 );
222 return( 0 );
223#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */
224 }
225 break;
227 switch( bits )
228 {
229#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)
230 case 256:
231 *oid = MBEDTLS_OID_EC_GRP_BP256R1;
232 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_BP256R1 );
233 return( 0 );
234#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */
235#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)
236 case 384:
237 *oid = MBEDTLS_OID_EC_GRP_BP384R1;
238 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_BP384R1 );
239 return( 0 );
240#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */
241#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)
242 case 512:
243 *oid = MBEDTLS_OID_EC_GRP_BP512R1;
244 *oid_len = MBEDTLS_OID_SIZE( MBEDTLS_OID_EC_GRP_BP512R1 );
245 return( 0 );
246#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */
247 }
248 break;
249 }
250 (void) oid;
251 (void) oid_len;
252 return( -1 );
253}
254
255#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH 1
256
257#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED)
258#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 192 + 7 ) / 8 ) + 1 )
259#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
260#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 192 + 7 ) / 8 ) + 1 )
261#endif
262#endif /* MBEDTLS_ECP_DP_SECP192R1_ENABLED */
263
264#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED)
265#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 224 + 7 ) / 8 ) + 1 )
266#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
267#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 224 + 7 ) / 8 ) + 1 )
268#endif
269#endif /* MBEDTLS_ECP_DP_SECP224R1_ENABLED */
270
271#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
272#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 256 + 7 ) / 8 ) + 1 )
273#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
274#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 256 + 7 ) / 8 ) + 1 )
275#endif
276#endif /* MBEDTLS_ECP_DP_SECP256R1_ENABLED */
277
278#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED)
279#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 384 + 7 ) / 8 ) + 1 )
280#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
281#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 384 + 7 ) / 8 ) + 1 )
282#endif
283#endif /* MBEDTLS_ECP_DP_SECP384R1_ENABLED */
284
285#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED)
286#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 521 + 7 ) / 8 ) + 1 )
287#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
288#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 521 + 7 ) / 8 ) + 1 )
289#endif
290#endif /* MBEDTLS_ECP_DP_SECP521R1_ENABLED */
291
292#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED)
293#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 192 + 7 ) / 8 ) + 1 )
294#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
295#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 192 + 7 ) / 8 ) + 1 )
296#endif
297#endif /* MBEDTLS_ECP_DP_SECP192K1_ENABLED */
298
299#if defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED)
300#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 224 + 7 ) / 8 ) + 1 )
301#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
302#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 224 + 7 ) / 8 ) + 1 )
303#endif
304#endif /* MBEDTLS_ECP_DP_SECP224K1_ENABLED */
305
306#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED)
307#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 256 + 7 ) / 8 ) + 1 )
308#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
309#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 256 + 7 ) / 8 ) + 1 )
310#endif
311#endif /* MBEDTLS_ECP_DP_SECP256K1_ENABLED */
312
313#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED)
314#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 256 + 7 ) / 8 ) + 1 )
315#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
316#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 256 + 7 ) / 8 ) + 1 )
317#endif
318#endif /* MBEDTLS_ECP_DP_BP256R1_ENABLED */
319
320#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED)
321#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 384 + 7 ) / 8 ) + 1 )
322#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
323#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 384 + 7 ) / 8 ) + 1 )
324#endif
325#endif /* MBEDTLS_ECP_DP_BP384R1_ENABLED */
326
327#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED)
328#if MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH < ( 2 * ( ( 512 + 7 ) / 8 ) + 1 )
329#undef MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH
330#define MBEDTLS_PSA_MAX_EC_PUBKEY_LENGTH ( 2 * ( ( 512 + 7 ) / 8 ) + 1 )
331#endif
332#endif /* MBEDTLS_ECP_DP_BP512R1_ENABLED */
333
334
335/* Translations for PK layer */
336
337static inline int mbedtls_psa_err_translate_pk( psa_status_t status )
338{
339 switch( status )
340 {
341 case PSA_SUCCESS:
342 return( 0 );
351 /* All other failures */
356 default: /* We return the same as for the 'other failures',
357 * but list them separately nonetheless to indicate
358 * which failure conditions we have considered. */
360 }
361}
362
363/* Translations for ECC */
364
365/* This function transforms an ECC group identifier from
366 * https://www.iana.org/assignments/tls-parameters/tls-parameters.xhtml#tls-parameters-8
367 * into a PSA ECC group identifier. */
368#if defined(MBEDTLS_ECP_C)
369static inline psa_key_type_t mbedtls_psa_parse_tls_ecc_group(
370 uint16_t tls_ecc_grp_reg_id, size_t *bits )
371{
372 const mbedtls_ecp_curve_info *curve_info =
373 mbedtls_ecp_curve_info_from_tls_id( tls_ecc_grp_reg_id );
374 if( curve_info == NULL )
375 return( 0 );
377 mbedtls_ecc_group_to_psa( curve_info->grp_id, bits ) ) );
378}
379#endif /* MBEDTLS_ECP_C */
380
381/* This function takes a buffer holding an EC public key
382 * exported through psa_export_public_key(), and converts
383 * it into an ECPoint structure to be put into a ClientKeyExchange
384 * message in an ECDHE exchange.
385 *
386 * Both the present and the foreseeable future format of EC public keys
387 * used by PSA have the ECPoint structure contained in the exported key
388 * as a subbuffer, and the function merely selects this subbuffer instead
389 * of making a copy.
390 */
391static inline int mbedtls_psa_tls_psa_ec_to_ecpoint( unsigned char *src,
392 size_t srclen,
393 unsigned char **dst,
394 size_t *dstlen )
395{
396 *dst = src;
397 *dstlen = srclen;
398 return( 0 );
399}
400
401/* This function takes a buffer holding an ECPoint structure
402 * (as contained in a TLS ServerKeyExchange message for ECDHE
403 * exchanges) and converts it into a format that the PSA key
404 * agreement API understands.
405 */
406static inline int mbedtls_psa_tls_ecpoint_to_psa_ec( unsigned char const *src,
407 size_t srclen,
408 unsigned char *dst,
409 size_t dstlen,
410 size_t *olen )
411{
412 if( srclen > dstlen )
414
415 memcpy( dst, src, srclen );
416 *olen = srclen;
417 return( 0 );
418}
419
420#endif /* MBEDTLS_USE_PSA_CRYPTO */
421
422#endif /* MBEDTLS_PSA_UTIL_H */
Configuration options (set of defines)
Platform Security Architecture cryptography module.
#define PSA_KEY_TYPE_ECC_KEY_PAIR(curve)
Elliptic curve key pair.
#define PSA_ALG_GCM
The GCM authenticated encryption algorithm.
#define PSA_ALG_SHA_224
SHA2-224.
#define PSA_ALG_SHA_1
SHA1.
#define PSA_ECC_FAMILY_SECP_R1
SEC random curves over prime fields.
#define PSA_ALG_SHA_384
SHA2-384.
#define PSA_ECC_FAMILY_SECP_K1
SEC Koblitz curves over prime fields.
#define PSA_ALG_AEAD_WITH_TAG_LENGTH(aead_alg, tag_length)
Macro to build a shortened AEAD algorithm.
#define PSA_ALG_SHA_256
SHA2-256.
uint16_t psa_key_type_t
Encoding of a key type.
Definition: crypto_types.h:66
#define PSA_ALG_RIPEMD160
PSA_ALG_RIPEMD160.
#define PSA_KEY_TYPE_AES
Key for a cipher, AEAD or MAC algorithm based on the AES block cipher.
#define PSA_ALG_MD4
MD4.
#define PSA_ALG_MD2
MD2.
#define PSA_ALG_ECB_NO_PADDING
The Electronic Code Book (ECB) mode of a block cipher, with no padding.
#define PSA_ECC_FAMILY_BRAINPOOL_P_R1
Brainpool P random curves.
#define PSA_ALG_CCM
The CCM authenticated encryption algorithm.
uint32_t psa_algorithm_t
Encoding of a cryptographic algorithm.
Definition: crypto_types.h:98
#define PSA_ALG_CBC_NO_PADDING
The CBC block cipher chaining mode, with no padding.
#define PSA_ALG_MD5
MD5.
uint8_t psa_ecc_family_t
The type of PSA elliptic curve family identifiers.
Definition: crypto_types.h:77
#define PSA_ALG_SHA_512
SHA2-512.
int32_t psa_status_t
Function return status.
Definition: crypto_types.h:55
#define PSA_ERROR_HARDWARE_FAILURE
A hardware failure was detected.
#define PSA_ERROR_CORRUPTION_DETECTED
A tampering attempt was detected.
#define PSA_ERROR_NOT_SUPPORTED
The requested operation or a parameter is not supported by this implementation.
Definition: crypto_values.h:61
#define PSA_SUCCESS
The action was completed successfully.
Definition: crypto_values.h:45
#define PSA_ERROR_INSUFFICIENT_ENTROPY
There is not enough entropy to generate random data needed for the requested action.
#define PSA_ERROR_COMMUNICATION_FAILURE
There was a communication failure inside the implementation.
#define PSA_ERROR_INSUFFICIENT_MEMORY
There is not enough runtime memory.
#define PSA_ERROR_BAD_STATE
The requested action cannot be performed in the current state.
#define MBEDTLS_OID_SIZE(x)
Returns the size of the binary string, without the trailing \0.
Definition: asn1.h:122
mbedtls_cipher_type_t
Supported {cipher type, cipher mode} pairs.
Definition: cipher.h:109
mbedtls_operation_t
Type of operation.
Definition: cipher.h:219
mbedtls_cipher_mode_t
Supported cipher modes.
Definition: cipher.h:193
@ MBEDTLS_CIPHER_AES_128_CBC
AES cipher with 128-bit CBC mode.
Definition: cipher.h:115
@ MBEDTLS_CIPHER_AES_192_GCM
AES cipher with 192-bit GCM mode.
Definition: cipher.h:125
@ MBEDTLS_CIPHER_AES_192_CCM
AES cipher with 192-bit CCM mode.
Definition: cipher.h:154
@ MBEDTLS_CIPHER_AES_256_GCM
AES cipher with 256-bit GCM mode.
Definition: cipher.h:126
@ MBEDTLS_CIPHER_AES_256_CCM
AES cipher with 256-bit CCM mode.
Definition: cipher.h:155
@ MBEDTLS_CIPHER_AES_128_GCM
AES cipher with 128-bit GCM mode.
Definition: cipher.h:124
@ MBEDTLS_CIPHER_AES_192_CBC
AES cipher with 192-bit CBC mode.
Definition: cipher.h:116
@ MBEDTLS_CIPHER_AES_128_CCM
AES cipher with 128-bit CCM mode.
Definition: cipher.h:153
@ MBEDTLS_CIPHER_AES_256_CBC
AES cipher with 256-bit CBC mode.
Definition: cipher.h:117
@ MBEDTLS_DECRYPT
Operation type for decryption.
Definition: cipher.h:221
@ MBEDTLS_ENCRYPT
Operation type for encryption.
Definition: cipher.h:222
@ MBEDTLS_MODE_ECB
The ECB cipher mode.
Definition: cipher.h:195
@ MBEDTLS_MODE_CCM
The CCM cipher mode.
Definition: cipher.h:202
@ MBEDTLS_MODE_GCM
The GCM cipher mode.
Definition: cipher.h:200
@ MBEDTLS_MODE_CBC
The CBC cipher mode.
Definition: cipher.h:196
#define MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL
The buffer is too small to write to.
#define MBEDTLS_ERR_ECP_RANDOM_FAILED
Generation of random value, such as ephemeral key, failed.
const mbedtls_ecp_curve_info * mbedtls_ecp_curve_info_from_tls_id(uint16_t tls_id)
This function retrieves curve information from a TLS NamedCurve value.
mbedtls_md_type_t
Supported message digests.
Definition: md.h:64
@ MBEDTLS_MD_SHA512
The SHA-512 message digest.
Definition: md.h:73
@ MBEDTLS_MD_MD5
The MD5 message digest.
Definition: md.h:68
@ MBEDTLS_MD_RIPEMD160
The RIPEMD-160 message digest.
Definition: md.h:74
@ MBEDTLS_MD_SHA384
The SHA-384 message digest.
Definition: md.h:72
@ MBEDTLS_MD_NONE
None.
Definition: md.h:65
@ MBEDTLS_MD_SHA256
The SHA-256 message digest.
Definition: md.h:71
@ MBEDTLS_MD_SHA224
The SHA-224 message digest.
Definition: md.h:70
@ MBEDTLS_MD_SHA1
The SHA-1 message digest.
Definition: md.h:69
@ MBEDTLS_MD_MD4
The MD4 message digest.
Definition: md.h:67
@ MBEDTLS_MD_MD2
The MD2 message digest.
Definition: md.h:66
#define PSA_KEY_USAGE_ENCRYPT
Whether the key may be used to encrypt a message.
uint32_t psa_key_usage_t
Encoding of permitted usage on a key.
Definition: crypto_types.h:260
#define PSA_KEY_USAGE_DECRYPT
Whether the key may be used to decrypt a message.
This file provides an API for Elliptic Curves over GF(P) (ECP).
This file contains the generic message-digest wrapper.
Object Identifier (OID) database.
Public Key abstraction layer.
#define MBEDTLS_ERR_PK_HW_ACCEL_FAILED
PK hardware accelerator failed.
Definition: pk.h:71
#define MBEDTLS_ERR_PK_BAD_INPUT_DATA
Bad input parameters to function.
Definition: pk.h:57
#define MBEDTLS_ERR_PK_ALLOC_FAILED
Memory allocation failed.
Definition: pk.h:55
#define MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE
Unavailable feature, e.g.
Definition: pk.h:67
Curve information, for use by other modules.