mbed TLS v3.1.0
Data Structures | Macros | Typedefs | Enumerations | Functions
crypto_struct.h File Reference

PSA cryptography module: Mbed TLS structured type implementations. More...

#include "mbedtls/private_access.h"
#include "mbedtls/build_info.h"
#include "mbedtls/cmac.h"
#include "mbedtls/gcm.h"
#include "mbedtls/ccm.h"
#include "mbedtls/chachapoly.h"
#include "crypto_driver_contexts_primitives.h"
#include "crypto_driver_contexts_composites.h"
Include dependency graph for crypto_struct.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  psa_hash_operation_s
 
struct  psa_cipher_operation_s
 
struct  psa_mac_operation_s
 
struct  psa_aead_operation_s
 
struct  psa_hkdf_key_derivation_t
 
struct  psa_tls12_prf_key_derivation_s
 
struct  psa_key_derivation_s
 
struct  psa_key_policy_s
 
struct  psa_core_key_attributes_t
 
struct  psa_key_attributes_s
 

Macros

#define PSA_HASH_OPERATION_INIT   { 0, { 0 } }
 
#define PSA_CIPHER_OPERATION_INIT   { 0, 0, 0, 0, { 0 } }
 
#define PSA_MAC_OPERATION_INIT   { 0, 0, 0, { 0 } }
 
#define PSA_AEAD_OPERATION_INIT   {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, {0}}
 
#define PSA_KEY_DERIVATION_OPERATION_INIT   { 0, 0, 0, { 0 } }
 
#define PSA_KEY_POLICY_INIT   { 0, 0, 0 }
 
#define PSA_KEY_BITS_TOO_LARGE   ( ( psa_key_bits_t ) -1 )
 
#define PSA_MAX_KEY_BITS   0xfff8
 
#define MBEDTLS_PSA_KA_FLAG_HAS_SLOT_NUMBER   ( (psa_key_attributes_flag_t) 0x0001 )
 
#define MBEDTLS_PSA_KA_MASK_EXTERNAL_ONLY
 
#define MBEDTLS_PSA_KA_MASK_DUAL_USE
 
#define PSA_CORE_KEY_ATTRIBUTES_INIT
 
#define PSA_KEY_ATTRIBUTES_INIT   { PSA_CORE_KEY_ATTRIBUTES_INIT, 0, NULL, 0 }
 

Typedefs

typedef struct
psa_tls12_prf_key_derivation_s 
psa_tls12_prf_key_derivation_t
 
typedef struct psa_key_policy_s psa_key_policy_t
 
typedef uint16_t psa_key_bits_t
 
typedef uint16_t psa_key_attributes_flag_t
 

Enumerations

enum  psa_tls12_prf_key_derivation_state_t {
  PSA_TLS12_PRF_STATE_INIT, PSA_TLS12_PRF_STATE_SEED_SET, PSA_TLS12_PRF_STATE_KEY_SET, PSA_TLS12_PRF_STATE_LABEL_SET,
  PSA_TLS12_PRF_STATE_OUTPUT
}
 

Functions

static struct psa_hash_operation_s psa_hash_operation_init (void)
 
static struct
psa_cipher_operation_s 
psa_cipher_operation_init (void)
 
static struct psa_mac_operation_s psa_mac_operation_init (void)
 
static struct psa_aead_operation_s psa_aead_operation_init (void)
 
static struct psa_key_derivation_s psa_key_derivation_operation_init (void)
 
static struct psa_key_policy_s psa_key_policy_init (void)
 
static struct psa_key_attributes_s psa_key_attributes_init (void)
 
static void psa_set_key_id (psa_key_attributes_t *attributes, mbedtls_svc_key_id_t key)
 
static mbedtls_svc_key_id_t psa_get_key_id (const psa_key_attributes_t *attributes)
 
static void mbedtls_set_key_owner_id (psa_key_attributes_t *attributes, mbedtls_key_owner_id_t owner)
 
static void psa_set_key_lifetime (psa_key_attributes_t *attributes, psa_key_lifetime_t lifetime)
 
static psa_key_lifetime_t psa_get_key_lifetime (const psa_key_attributes_t *attributes)
 
static void psa_extend_key_usage_flags (psa_key_usage_t *usage_flags)
 
static void psa_set_key_usage_flags (psa_key_attributes_t *attributes, psa_key_usage_t usage_flags)
 
static psa_key_usage_t psa_get_key_usage_flags (const psa_key_attributes_t *attributes)
 
static void psa_set_key_algorithm (psa_key_attributes_t *attributes, psa_algorithm_t alg)
 
static psa_algorithm_t psa_get_key_algorithm (const psa_key_attributes_t *attributes)
 
psa_status_t psa_set_key_domain_parameters (psa_key_attributes_t *attributes, psa_key_type_t type, const uint8_t *data, size_t data_length)
 
static void psa_set_key_type (psa_key_attributes_t *attributes, psa_key_type_t type)
 
static psa_key_type_t psa_get_key_type (const psa_key_attributes_t *attributes)
 
static void psa_set_key_bits (psa_key_attributes_t *attributes, size_t bits)
 
static size_t psa_get_key_bits (const psa_key_attributes_t *attributes)
 

Detailed Description

PSA cryptography module: Mbed TLS structured type implementations.

Note
This file may not be included directly. Applications must include psa/crypto.h.

This file contains the definitions of some data structures with implementation-specific definitions.

In implementations with isolation between the application and the cryptography module, it is expected that the front-end and the back-end would have different versions of this file.

Design notes about multipart operation structures

For multipart operations without driver delegation support, each multipart operation structure contains a psa_algorithm_t alg field which indicates which specific algorithm the structure is for. When the structure is not in use, alg is 0. Most of the structure consists of a union which is discriminated by alg.

For multipart operations with driver delegation support, each multipart operation structure contains an unsigned int id field indicating which driver got assigned to do the operation. When the structure is not in use, 'id' is 0. The structure contains also a driver context which is the union of the contexts of all drivers able to handle the type of multipart operation.

Note that when alg or id is 0, the content of other fields is undefined. In particular, it is not guaranteed that a freshly-initialized structure is all-zero: we initialize structures to something like {0, 0}, which is only guaranteed to initializes the first member of the union; GCC and Clang initialize the whole structure to 0 (at the time of writing), but MSVC and CompCert don't.

In Mbed Crypto, multipart operation structures live independently from the key. This allows Mbed Crypto to free the key objects when destroying a key slot. If a multipart operation needs to remember the key after the setup function returns, the operation structure needs to contain a copy of the key.

Definition in file crypto_struct.h.

Macro Definition Documentation

#define MBEDTLS_PSA_KA_FLAG_HAS_SLOT_NUMBER   ( (psa_key_attributes_flag_t) 0x0001 )

Definition at line 308 of file crypto_struct.h.

Referenced by psa_clear_key_slot_number(), and psa_set_key_slot_number().

#define MBEDTLS_PSA_KA_MASK_DUAL_USE
Value:
( \
0 )

Definition at line 319 of file crypto_struct.h.

#define MBEDTLS_PSA_KA_MASK_EXTERNAL_ONLY
Value:
( \
0 )
#define MBEDTLS_PSA_KA_FLAG_HAS_SLOT_NUMBER

Definition at line 313 of file crypto_struct.h.

#define PSA_CORE_KEY_ATTRIBUTES_INIT
Value:
#define PSA_KEY_LIFETIME_VOLATILE
#define PSA_KEY_POLICY_INIT
#define MBEDTLS_SVC_KEY_ID_INIT
#define PSA_KEY_TYPE_NONE

Definition at line 332 of file crypto_struct.h.

#define PSA_KEY_BITS_TOO_LARGE   ( ( psa_key_bits_t ) -1 )

Definition at line 291 of file crypto_struct.h.

Referenced by psa_set_key_bits().

#define PSA_KEY_POLICY_INIT   { 0, 0, 0 }

Definition at line 279 of file crypto_struct.h.

Referenced by psa_key_policy_init().

#define PSA_MAX_KEY_BITS   0xfff8

Definition at line 297 of file crypto_struct.h.

Referenced by psa_set_key_bits().

Typedef Documentation

typedef uint16_t psa_key_attributes_flag_t

A mask of flags that can be stored in key attributes.

This type is also used internally to store flags in slots. Internal flags are defined in library/psa_crypto_core.h. Internal flags may have the same value as external flags if they are properly handled during key creation and in psa_get_key_attributes.

Definition at line 306 of file crypto_struct.h.

typedef uint16_t psa_key_bits_t

Definition at line 288 of file crypto_struct.h.

Definition at line 277 of file crypto_struct.h.

Enumeration Type Documentation

Enumerator
PSA_TLS12_PRF_STATE_INIT 
PSA_TLS12_PRF_STATE_SEED_SET 
PSA_TLS12_PRF_STATE_KEY_SET 
PSA_TLS12_PRF_STATE_LABEL_SET 
PSA_TLS12_PRF_STATE_OUTPUT 

Definition at line 204 of file crypto_struct.h.

Function Documentation

static void mbedtls_set_key_owner_id ( psa_key_attributes_t attributes,
mbedtls_key_owner_id_t  owner 
)
inlinestatic

Definition at line 382 of file crypto_struct.h.

static struct psa_aead_operation_s psa_aead_operation_init ( void  )
static

Definition at line 178 of file crypto_struct.h.

References PSA_AEAD_OPERATION_INIT.

static struct psa_cipher_operation_s psa_cipher_operation_init ( void  )
static

Definition at line 120 of file crypto_struct.h.

References PSA_CIPHER_OPERATION_INIT.

static void psa_extend_key_usage_flags ( psa_key_usage_t usage_flags)
inlinestatic
static psa_algorithm_t psa_get_key_algorithm ( const psa_key_attributes_t attributes)
inlinestatic

Definition at line 437 of file crypto_struct.h.

static size_t psa_get_key_bits ( const psa_key_attributes_t attributes)
inlinestatic

Definition at line 483 of file crypto_struct.h.

static mbedtls_svc_key_id_t psa_get_key_id ( const psa_key_attributes_t attributes)
inlinestatic

Definition at line 375 of file crypto_struct.h.

static psa_key_lifetime_t psa_get_key_lifetime ( const psa_key_attributes_t attributes)
inlinestatic

Definition at line 403 of file crypto_struct.h.

static psa_key_type_t psa_get_key_type ( const psa_key_attributes_t attributes)
inlinestatic

Definition at line 468 of file crypto_struct.h.

static psa_key_usage_t psa_get_key_usage_flags ( const psa_key_attributes_t attributes)
inlinestatic

Definition at line 425 of file crypto_struct.h.

static struct psa_hash_operation_s psa_hash_operation_init ( void  )
static

Definition at line 95 of file crypto_struct.h.

References PSA_HASH_OPERATION_INIT.

static struct psa_key_attributes_s psa_key_attributes_init ( void  )
static

Definition at line 353 of file crypto_struct.h.

References PSA_KEY_ATTRIBUTES_INIT.

static struct psa_key_derivation_s psa_key_derivation_operation_init ( void  )
static

Definition at line 264 of file crypto_struct.h.

References PSA_KEY_DERIVATION_OPERATION_INIT.

static struct psa_key_policy_s psa_key_policy_init ( void  )
static

Definition at line 280 of file crypto_struct.h.

References PSA_KEY_POLICY_INIT.

static struct psa_mac_operation_s psa_mac_operation_init ( void  )
static

Definition at line 145 of file crypto_struct.h.

References PSA_MAC_OPERATION_INIT.

static void psa_set_key_algorithm ( psa_key_attributes_t attributes,
psa_algorithm_t  alg 
)
inlinestatic

Definition at line 431 of file crypto_struct.h.

static void psa_set_key_bits ( psa_key_attributes_t attributes,
size_t  bits 
)
inlinestatic

Definition at line 474 of file crypto_struct.h.

References PSA_KEY_BITS_TOO_LARGE, and PSA_MAX_KEY_BITS.

psa_status_t psa_set_key_domain_parameters ( psa_key_attributes_t attributes,
psa_key_type_t  type,
const uint8_t *  data,
size_t  data_length 
)

Referenced by psa_set_key_type().

static void psa_set_key_id ( psa_key_attributes_t attributes,
mbedtls_svc_key_id_t  key 
)
inlinestatic
static void psa_set_key_lifetime ( psa_key_attributes_t attributes,
psa_key_lifetime_t  lifetime 
)
inlinestatic

Definition at line 389 of file crypto_struct.h.

References PSA_KEY_LIFETIME_IS_VOLATILE.

static void psa_set_key_type ( psa_key_attributes_t attributes,
psa_key_type_t  type 
)
inlinestatic

Definition at line 450 of file crypto_struct.h.

References psa_set_key_domain_parameters().

static void psa_set_key_usage_flags ( psa_key_attributes_t attributes,
psa_key_usage_t  usage_flags 
)
inlinestatic

Definition at line 418 of file crypto_struct.h.

References psa_extend_key_usage_flags().