Lines Matching full:cryptographic

6 …rypto/psa/#application-programming-interface) defines an interface to cryptographic operations for…
11 …s defined in the PSA driver interface. The key point is that software cryptographic operations are…
15 * Addressing software and hardware cryptographic implementations through the same C interface reduc…
16 * The organization of the software cryptographic implementations in drivers promotes modularization…
17 * As hardware capabilities, software cryptographic functionalities can be described by a JSON drive…
18 …ework to integrate third party or alternative software implementations of cryptographic operations.
22 …SA Cryptography API specification but does not perform on its own any cryptographic operation. The…
23 perform the cryptographic operations. The core is responsible for:
27 * dispatching the cryptographic operations to the appropriate PSA drivers.
29 The sketch of an Mbed TLS PSA cryptographic API implementation is thus:
54 …s dispatch cryptographic operations to accelerator drivers, secure element drivers as well as to t…
56cryptographic mechanism through the PSA API in Mbed TLS](psa-conditional-inclusion-c.html). That w…
71 …t it is not an actual driver that drives some hardware. It implements cryptographic operations pur…
73 …a.h are the files containing the Mbed TLS PSA driver implementing RSA cryptographic operations. Th…
75 ## How to implement a new cryptographic mechanism
103 Typically, if there's enough demand for a cryptographic mechanism in Mbed TLS, there's enough deman…
105 At the time of writing, all cryptographic mechanisms that are accessible through `psa_xxx` APIs in …
107 Mbed TLS routinely implements cryptographic mechanisms that are not yet part of a published PSA sta…
125 Each cryptographic mechanism is optional and can be selected by the application at build time. For …
133 For more details, see *[Conditional inclusion of cryptographic mechanism through the PSA API in Mbe…
139 The general structure of a cryptographic operation function is:
144 4. Basic cryptographic building blocks in `library/*.c`.