• Home
  • Raw
  • Download

Lines Matching refs:driver

1 PSA Cryptoprocessor driver developer's guide
8 …vers, refer to the [PSA Cryptoprocessor Driver Interface specification](psa-driver-interface.html).
10 …further notice, we do not guarantee backward compatibility with existing driver code when `MBEDTLS…
16 The PSA cryptography driver interface provides a way to build Mbed TLS with additional code that im…
20 …hey are typically used for hardware **accelerators**. When a transparent driver is available for a…
21 … smartcard, a secure enclave, etc. An opaque driver is invoked for the specific key location that …
23 ### Deliverables for a driver
25driver, you need to implement some functions with C linkage, and to declare these functions in a *…
27driver description file is JSON. The structure of this JSON file is specified in the section [“Dri…
29 A driver therefore consists of:
31 * A driver description file (in JSON format).
32 …es defining the types required by the driver description. The names of these header files is decla…
33 * An object file compiled for the target platform defining the functions required by the driver des…
37 Mbed TLS calls driver entry points [as specified in the PSA Cryptography Driver Interface specifica…
41driver description can include Mbed TLS extensions (marked by the namespace "mbedtls"). Mbed TLS e…
42 …include complex preprocessor definitions to conditionally include header files for a given driver.
43 …nclude complex preprocessor definitions to conditionally enable dispatch capabilities for a driver.
45 ## Building and testing your driver